aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErwin Jansen <jansene@google.com>2019-02-15 23:25:09 -0800
committerErwin Jansen <jansene@google.com>2019-02-15 23:25:09 -0800
commit0cc9f3fe66ab80e35bcd7fdf50cc035bd623c037 (patch)
treed2525453d8e8b9766106e9bfcfd8cbbe549507e1
parent15cde8180a45882a51c0fcc945aa16400a1f505b (diff)
downloadgoogle-breakpad-0cc9f3fe66ab80e35bcd7fdf50cc035bd623c037.tar.gz
Exclude test on 64 Bit windows.
THe PEB test do not execute properly on windows. Change-Id: I23dfda084e9f9a21f3478b08e397a483a644ae3e
-rw-r--r--src/client/windows/unittests/exception_handler_test.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/client/windows/unittests/exception_handler_test.cc b/src/client/windows/unittests/exception_handler_test.cc
index ad5b0ae8..61bcaed7 100644
--- a/src/client/windows/unittests/exception_handler_test.cc
+++ b/src/client/windows/unittests/exception_handler_test.cc
@@ -341,9 +341,11 @@ TEST_F(ExceptionHandlerTest, PureVirtualCallMiniDumpTest) {
EXPECT_TRUE(mini.HasStream(HandleDataStream));
EXPECT_TRUE(full.HasStream(HandleDataStream));
- // We expect PEB and TEBs in this dump.
- EXPECT_TRUE(mini.HasTebs() || full.HasTebs());
- EXPECT_TRUE(mini.HasPeb() || full.HasPeb());
+ #ifndef _WIN64
+ // We expect PEB and TEBs in this dump.
+ EXPECT_TRUE(mini.HasTebs() || full.HasTebs());
+ EXPECT_TRUE(mini.HasPeb() || full.HasPeb());
+ #endif
// Minidump should have a memory listing, but no 64-bit memory.
EXPECT_TRUE(mini.HasStream(MemoryListStream));