I have been trying to run this unittest from Google breakpad for minidumps. Now on line 165, it compares the dump written to /temp/ with expected values that are hardcoded. Here, instead of returning true, the ASSERT
statement fails.
ASSERT_EQ(memcmp(buffer, expected, expected_byte_count), 0);
Why is this happening?