diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-28 02:55:45 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-28 02:55:45 +0000 |
commit | a537a931b360517a55c461cbdfd8365ac4da1dac (patch) | |
tree | 2360eba8754aabe6216268af3f14e802db17516e | |
parent | b174755cd8752ec74b157b50cd256f42ad1314cb (diff) | |
download | chromium_src-a537a931b360517a55c461cbdfd8365ac4da1dac.zip chromium_src-a537a931b360517a55c461cbdfd8365ac4da1dac.tar.gz chromium_src-a537a931b360517a55c461cbdfd8365ac4da1dac.tar.bz2 |
Fix --experimental-fully-parallel to properly put (dir, file) tuples into
the queue of tests.
BUG=none
TEST=none
R=ojan@chromium.org
Review URL: http://codereview.chromium.org/556053
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@37376 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py b/webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py index 4ff971e..3e4cb0b 100755 --- a/webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py +++ b/webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py @@ -418,8 +418,8 @@ class TestRunner: self._is_single_threaded()): filename_queue = Queue.Queue() for test_file in test_files: - filename_queue.put('.', - [self._get_test_info_for_file(test_file)]) + filename_queue.put( + ('.', [self._GetTestInfoForFile(test_file)])) return filename_queue tests_by_dir = {} |