Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py

Issue 556053: Fix --experimental-fully-parallel to properly put (dir, file) tuples into... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: remove websocket_server.py - that wasn't supposed to be in the CL Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py
===================================================================
--- webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py (revision 37317)
+++ webkit/tools/layout_tests/webkitpy/layout_tests/run_chromium_webkit_tests.py (working copy)
@@ -418,8 +418,8 @@
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 = {}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698