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

Unified Diff: base/test/test_switches.cc

Issue 2846673004: Set limit for number of failed EXPECTs per test in test launcher output. (Closed)
Patch Set: Fix missed constant usage. Created 3 years, 7 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 | « base/test/test_switches.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/test_switches.cc
diff --git a/base/test/test_switches.cc b/base/test/test_switches.cc
index 817a38edb18f56bf5c1f9354977b7497fdd8ce44..48f6861330ad2569e2d3db7a0ea41c9d78118633 100644
--- a/base/test/test_switches.cc
+++ b/base/test/test_switches.cc
@@ -56,6 +56,11 @@ const char switches::kTestLauncherPrintWritablePath[] =
const char switches::kTestLauncherShardIndex[] =
"test-launcher-shard-index";
+// Limit of test part results in the output. Default limit is 10.
+// Negative value will completely disable limit.
+const char switches::kTestLauncherTestPartResultsLimit[] =
+ "test-launcher-test-part-results-limit";
+
// Total number of shards. Must be the same for all shards.
const char switches::kTestLauncherTotalShards[] =
"test-launcher-total-shards";
« no previous file with comments | « base/test/test_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698