From 31ce514946a450aebfb7e6036a21f0022f72f90a Mon Sep 17 00:00:00 2001 From: "ojan@google.com" Date: Wed, 1 Apr 2009 18:54:12 +0000 Subject: 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 --- webkit/tools/layout_tests/run_webkit_tests.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'webkit') 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: -- cgit v1.1