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

Unified Diff: webkit/tools/layout_tests/run_webkit_tests.py

Issue 60018: Add test failures from turning on multiple test_shells... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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: webkit/tools/layout_tests/run_webkit_tests.py
===================================================================
--- webkit/tools/layout_tests/run_webkit_tests.py (revision 12962)
+++ webkit/tools/layout_tests/run_webkit_tests.py (working copy)
@@ -679,9 +679,8 @@
options.platform = path_utils.PlatformDir()
if not options.num_test_shells:
- # For now, only run Windows-Release in parallel until we make other
- # configurations more stable.
- if sys.platform in ('win32', 'cygwin') and options.target == 'Release':
+ # All configurations are still to flaky to have this on by default.
+ if False:
cpus = 1
if sys.platform in ('win32', 'cygwin'):
cpus = int(os.environ.get('NUMBER_OF_PROCESSORS', 1))
@@ -705,6 +704,8 @@
else:
options.num_test_shells = 1
+ logging.info("Running %s test_shells in parallel" % options.num_test_shells)
+
# Include all tests if none are specified.
paths = args
if not paths:
« 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