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

Unified Diff: base/test/launcher/test_launcher.cc

Issue 2561963002: base: Remove the string logging from CHECK(). (Closed)
Patch Set: checkstring: rebase Created 4 years 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: base/test/launcher/test_launcher.cc
diff --git a/base/test/launcher/test_launcher.cc b/base/test/launcher/test_launcher.cc
index 2f22d32d50a4dba63b902aa4006e94a22db08071..48d3434e20a3d57655ff2c9f62679b870ace9d9c 100644
--- a/base/test/launcher/test_launcher.cc
+++ b/base/test/launcher/test_launcher.cc
@@ -647,7 +647,8 @@ void TestLauncher::OnTestFinished(const TestResult& original_result) {
status_line.append("(UNKNOWN)");
} else {
// Fail very loudly so it's not ignored.
- CHECK(false) << "Unhandled test result status: " << result.status;
+ // Unhandled test result status.
+ CHECK(false);
}
fprintf(stdout, "%s\n", status_line.c_str());
fflush(stdout);

Powered by Google App Engine
This is Rietveld 408576698