diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 18:54:12 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-01 18:54:12 +0000 |
commit | 31ce514946a450aebfb7e6036a21f0022f72f90a (patch) | |
tree | a5f8f6c5ac6db3b709ef9fc247f6903a22cfd72f /webkit | |
parent | 4ee0a3cbc1bf0fa13d7736f364b6fc0baca6b914 (diff) | |
download | chromium_src-31ce514946a450aebfb7e6036a21f0022f72f90a.zip chromium_src-31ce514946a450aebfb7e6036a21f0022f72f90a.tar.gz chromium_src-31ce514946a450aebfb7e6036a21f0022f72f90a.tar.bz2 |
Stop running tests in parallel. There's still
too much flakiness.
Review URL: http://codereview.chromium.org/60018
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12968 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rwxr-xr-x | webkit/tools/layout_tests/run_webkit_tests.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py index 7cb990b..3b0b5ae 100755 --- a/webkit/tools/layout_tests/run_webkit_tests.py +++ b/webkit/tools/layout_tests/run_webkit_tests.py @@ -679,9 +679,8 @@ def main(options, args): 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 @@ def main(options, args): 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: |