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

Unified Diff: content/test/test_launcher.cc

Issue 10441103: Make sharding_supervisor.py run InProcessBrowserTest.Empty (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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 | « no previous file | tools/sharding_supervisor/sharding_supervisor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_launcher.cc
===================================================================
--- content/test/test_launcher.cc (revision 139574)
+++ content/test/test_launcher.cc (working copy)
@@ -446,9 +446,9 @@
test_name.append(".");
test_name.append(test_info->name());
- // Skip our special test so it's not run twice. That confuses
- // the log parser.
- if (test_name == kEmptyTestName)
+ // Skip our special test so it's not run twice, unless it's the only test
+ // being run, to avoid confusing the log parser.
+ if (test_name == kEmptyTestName && positive_filter != kEmptyTestName)
continue;
// Skip disabled tests.
« no previous file with comments | « no previous file | tools/sharding_supervisor/sharding_supervisor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698