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

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

Issue 393283006: Temporarily increase retry limit in test_launcher (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/launcher/test_launcher.cc
diff --git a/base/test/launcher/test_launcher.cc b/base/test/launcher/test_launcher.cc
index 56ed4a27024bd95cfcd87a237a46fe54c9d9be0b..5d9a95f6fda517bc73ae4c9031df3666af5c57b7 100644
--- a/base/test/launcher/test_launcher.cc
+++ b/base/test/launcher/test_launcher.cc
@@ -343,7 +343,9 @@ TestLauncher::TestLauncher(TestLauncherDelegate* launcher_delegate,
// Enable test retries by default for bots. This can be still overridden
// from command line using --test-launcher-retry-limit flag.
- retry_limit_ = 3;
+ // TODO(sergeyberezin): decrease retry_limit_ back to 3 when the
+ // ignorer_bot is deployed to automatically disable flaky tests.
+ retry_limit_ = 12;
} else {
// Default to serial test execution if not running on a bot. This makes it
// possible to disable stdio redirection and can still be overridden with
« 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