diff options
-rwxr-xr-x | webkit/tools/layout_tests/run_webkit_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py index 441c4c7..d0660de 100755 --- a/webkit/tools/layout_tests/run_webkit_tests.py +++ b/webkit/tools/layout_tests/run_webkit_tests.py @@ -201,7 +201,7 @@ class TestRunner: # Remove skipped - both fixable and ignored - files from the # top-level list of files to test. num_all_test_files = len(self._test_files) - skipped = () + skipped = set() if num_all_test_files > 1 and not self._options.force: skipped = self._expectations.GetTestsWithResultType( test_expectations.SKIP) |