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

Unified Diff: third_party/crashpad/crashpad/test/file.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
« no previous file with comments | « third_party/crashpad/crashpad/test/errors.h ('k') | third_party/crashpad/crashpad/test/hex_string.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/crashpad/crashpad/test/file.cc
diff --git a/third_party/crashpad/crashpad/test/file.cc b/third_party/crashpad/crashpad/test/file.cc
index cd53b1bb080b9cbd5f608229b8db90f681a680da..75af744d3b0b987a7225f23bead489465c2db1d7 100644
--- a/third_party/crashpad/crashpad/test/file.cc
+++ b/third_party/crashpad/crashpad/test/file.cc
@@ -37,7 +37,7 @@ bool FileExists(const base::FilePath& path) {
#error "Not implemented"
#endif
if (rv < 0) {
- EXPECT_EQ(ENOENT, errno) << ErrnoMessage(stat_function) << " "
+ EXPECT_EQ(errno, ENOENT) << ErrnoMessage(stat_function) << " "
<< path.value();
return false;
}
« no previous file with comments | « third_party/crashpad/crashpad/test/errors.h ('k') | third_party/crashpad/crashpad/test/hex_string.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698