Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(277)

Unified Diff: third_party/crashpad/crashpad/util/mach/exception_behaviors_test.cc

Issue 2804713002: Update Crashpad to b4095401639ebe2ad33169e5c1d994065cbff1b8 (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/crashpad/crashpad/util/mach/exception_behaviors_test.cc
diff --git a/third_party/crashpad/crashpad/util/mach/exception_behaviors_test.cc b/third_party/crashpad/crashpad/util/mach/exception_behaviors_test.cc
index a4a55e2619d83488ae68fd6630850db95d59b0e3..3ccb20274c42eca4af24390b199228867ad61144 100644
--- a/third_party/crashpad/crashpad/util/mach/exception_behaviors_test.cc
+++ b/third_party/crashpad/crashpad/util/mach/exception_behaviors_test.cc
@@ -59,13 +59,13 @@ TEST(ExceptionBehaviors, ExceptionBehaviors) {
SCOPED_TRACE(base::StringPrintf(
"index %zu, behavior %d", index, test_data.behavior));
- EXPECT_EQ(test_data.state, ExceptionBehaviorHasState(test_data.behavior));
- EXPECT_EQ(test_data.identity,
- ExceptionBehaviorHasIdentity(test_data.behavior));
- EXPECT_EQ(test_data.mach_exception_codes,
- ExceptionBehaviorHasMachExceptionCodes(test_data.behavior));
- EXPECT_EQ(test_data.basic_behavior,
- ExceptionBehaviorBasic(test_data.behavior));
+ EXPECT_EQ(ExceptionBehaviorHasState(test_data.behavior), test_data.state);
+ EXPECT_EQ(ExceptionBehaviorHasIdentity(test_data.behavior),
+ test_data.identity);
+ EXPECT_EQ(ExceptionBehaviorHasMachExceptionCodes(test_data.behavior),
+ test_data.mach_exception_codes);
+ EXPECT_EQ(ExceptionBehaviorBasic(test_data.behavior),
+ test_data.basic_behavior);
}
}

Powered by Google App Engine
This is Rietveld 408576698