summaryrefslogtreecommitdiffstats
path: root/webkit/tools/layout_tests/run_webkit_tests.py
diff options
context:
space:
mode:
authorojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-04 00:33:13 +0000
committerojan@chromium.org <ojan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-04 00:33:13 +0000
commit95852502aefcebaae577a6bceef69f81755acc25 (patch)
tree4d07c6fd0d2865882734fa96332632eb1ebf5072 /webkit/tools/layout_tests/run_webkit_tests.py
parent2c11c6bff73add78cbc236b80739d65dcac2feb9 (diff)
downloadchromium_src-95852502aefcebaae577a6bceef69f81755acc25.zip
chromium_src-95852502aefcebaae577a6bceef69f81755acc25.tar.gz
chromium_src-95852502aefcebaae577a6bceef69f81755acc25.tar.bz2
Use multiple workers with lighttpd. Hopefully this will reduce
http flakiness. I wonder if this would have reduced the http flakiness on Mac as well. Review URL: http://codereview.chromium.org/466027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@33757 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/layout_tests/run_webkit_tests.py')
-rwxr-xr-xwebkit/tools/layout_tests/run_webkit_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py
index dd9042d..9ce4818 100755
--- a/webkit/tools/layout_tests/run_webkit_tests.py
+++ b/webkit/tools/layout_tests/run_webkit_tests.py
@@ -133,7 +133,8 @@ class TestRunner:
self._http_server = apache_http_server.LayoutTestApacheHttpd(
options.results_directory)
else:
- self._http_server = http_server.Lighttpd(options.results_directory)
+ self._http_server = http_server.Lighttpd(options.results_directory,
+ num_workers=self._options.num_test_shells)
self._shardable_directories = ['chrome', 'LayoutTests', 'pending', 'fast',
'http', 'tests']