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

Unified Diff: base/thread_unittest.cc

Issue 491009: Check how buildbots behave when CHECK fails on different OSs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/thread_unittest.cc
===================================================================
--- base/thread_unittest.cc (revision 34168)
+++ base/thread_unittest.cc (working copy)
@@ -141,3 +141,9 @@
t.Start();
EXPECT_TRUE(t.InitCalled());
}
+
+TEST(SanityCheck, TestCheck) {
+ LOG(ERROR) << "This line is before the CHECK";
+ CHECK(false);
+ LOG(ERROR) << "This line is after the CHECK";
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698