diff options
author | ojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-03 23:55:33 +0000 |
---|---|---|
committer | ojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-12-03 23:55:33 +0000 |
commit | 265d542675ecd4e0394ed24dff7ca1a30db8374d (patch) | |
tree | 7cc53f45d96a1e808ecd81d368583544a5b43501 /webkit | |
parent | feacf6810018543467b9befdfdc0d52dc9ae7d92 (diff) | |
download | chromium_src-265d542675ecd4e0394ed24dff7ca1a30db8374d.zip chromium_src-265d542675ecd4e0394ed24dff7ca1a30db8374d.tar.gz chromium_src-265d542675ecd4e0394ed24dff7ca1a30db8374d.tar.bz2 |
Actually, this looks to be pretty stable on the V8-latest builders.
So, shard the http and fast directories on all builders.
Review URL: http://codereview.chromium.org/463021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33753 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rwxr-xr-x | webkit/tools/layout_tests/run_webkit_tests.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py index b9244de..dd9042d 100755 --- a/webkit/tools/layout_tests/run_webkit_tests.py +++ b/webkit/tools/layout_tests/run_webkit_tests.py @@ -135,14 +135,8 @@ class TestRunner: else: self._http_server = http_server.Lighttpd(options.results_directory) - self._shardable_directories = ['chrome', 'LayoutTests', 'pending'] - - # Experiment with more sharding on the V8-Lastest builders. Turn this on - # for all builders if the increased flakiness is sufficiently manageable. - if options.builder_name and options.builder_name.find("(V8-Latest)") != -1: - self._shardable_directories.append('fast') - self._shardable_directories.append('http') - self._shardable_directories.append('tests') + self._shardable_directories = ['chrome', 'LayoutTests', 'pending', 'fast', + 'http', 'tests'] self._websocket_server = websocket_server.PyWebSocket( options.results_directory) |