diff options
Diffstat (limited to 'src/processor/minidump_unittest.cc')
-rw-r--r-- | src/processor/minidump_unittest.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/processor/minidump_unittest.cc b/src/processor/minidump_unittest.cc index eb203ec6..1faf169d 100644 --- a/src/processor/minidump_unittest.cc +++ b/src/processor/minidump_unittest.cc @@ -726,7 +726,7 @@ TEST(Dump, OneExceptionX86) { u_int32_t thread_id; ASSERT_TRUE(md_exception->GetThreadID(&thread_id)); - ASSERT_EQ(0x1234abcd, thread_id); + ASSERT_EQ(0x1234abcdU, thread_id); const MDRawExceptionStream* raw_exception = md_exception->exception(); ASSERT_TRUE(raw_exception != NULL); @@ -800,7 +800,7 @@ TEST(Dump, OneExceptionX86XState) { u_int32_t thread_id; ASSERT_TRUE(md_exception->GetThreadID(&thread_id)); - ASSERT_EQ(0x1234abcd, thread_id); + ASSERT_EQ(0x1234abcdU, thread_id); const MDRawExceptionStream* raw_exception = md_exception->exception(); ASSERT_TRUE(raw_exception != NULL); @@ -878,7 +878,7 @@ TEST(Dump, OneExceptionARM) { u_int32_t thread_id; ASSERT_TRUE(md_exception->GetThreadID(&thread_id)); - ASSERT_EQ(0x1234abcd, thread_id); + ASSERT_EQ(0x1234abcdU, thread_id); const MDRawExceptionStream* raw_exception = md_exception->exception(); ASSERT_TRUE(raw_exception != NULL); @@ -962,7 +962,7 @@ TEST(Dump, OneExceptionARMOldFlags) { u_int32_t thread_id; ASSERT_TRUE(md_exception->GetThreadID(&thread_id)); - ASSERT_EQ(0x1234abcd, thread_id); + ASSERT_EQ(0x1234abcdU, thread_id); const MDRawExceptionStream* raw_exception = md_exception->exception(); ASSERT_TRUE(raw_exception != NULL); |