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

Unified Diff: third_party/crashpad/crashpad/test/win/child_launcher.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/test/win/child_launcher.cc
diff --git a/third_party/crashpad/crashpad/test/win/child_launcher.cc b/third_party/crashpad/crashpad/test/win/child_launcher.cc
index e35f1cb8d315713167a9305f0cf1b3b11ce35fb9..4ab1c816803a51a0037f27d636da7250282f6733 100644
--- a/third_party/crashpad/crashpad/test/win/child_launcher.cc
+++ b/third_party/crashpad/crashpad/test/win/child_launcher.cc
@@ -89,8 +89,8 @@ void ChildLauncher::Start() {
DWORD ChildLauncher::WaitForExit() {
EXPECT_TRUE(process_handle_.is_valid());
- EXPECT_EQ(WAIT_OBJECT_0,
- WaitForSingleObject(process_handle_.get(), INFINITE));
+ EXPECT_EQ(WaitForSingleObject(process_handle_.get(), INFINITE),
+ WAIT_OBJECT_0);
DWORD exit_code = 0;
EXPECT_TRUE(GetExitCodeProcess(process_handle_.get(), &exit_code));
process_handle_.reset();
« no previous file with comments | « third_party/crashpad/crashpad/test/test_test.gyp ('k') | third_party/crashpad/crashpad/test/win/win_child_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698