diff options
Diffstat (limited to 'webkit/tools/layout_tests/run_webkit_tests.py')
-rwxr-xr-x | webkit/tools/layout_tests/run_webkit_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py index c19e524..aaa9e1a 100755 --- a/webkit/tools/layout_tests/run_webkit_tests.py +++ b/webkit/tools/layout_tests/run_webkit_tests.py @@ -158,7 +158,7 @@ class TestRunner: else: self._http_server = http_server.Lighttpd(options.results_directory) - self._shardable_directories = ['chrome', 'LayoutTests', 'pending', 'fast', + self._shardable_directories = ['chrome', 'LayoutTests', 'fast', 'svg', 'loader', 'editing'] # The http tests are very stable on mac/linux. @@ -1385,7 +1385,7 @@ def main(options, args): if options.clobber_old_results: # Just clobber the actual test results directories since the other files # in the results directory are explicitly used for cross-run tracking. - test_dirs = ("LayoutTests", "chrome", "pending") + test_dirs = ("LayoutTests", "chrome") for directory in test_dirs: path = os.path.join(options.results_directory, directory) if os.path.exists(path): |