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

Unified Diff: webkit/tools/layout_tests/run_webkit_tests.py

Issue 63051: Don't throw an error if no http tests are run! TBR. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 8 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/run_webkit_tests.py
===================================================================
--- webkit/tools/layout_tests/run_webkit_tests.py (revision 13230)
+++ webkit/tools/layout_tests/run_webkit_tests.py (working copy)
@@ -349,6 +349,7 @@
# tests will take to run. We can't just use a PriorityQueue until we move
# to Python 2.6.
test_lists = []
+ http_tests = None
for directory in tests_by_dir:
test_list = tests_by_dir[directory]
# Keep the tests in alphabetical order.
@@ -364,7 +365,8 @@
# Put the http tests first. There are only a couple hundred of them, but
# each http test takes a very long time to run, so sorting by the number
# of tests doesn't accurately capture how long they take to run.
- test_lists.insert(0, http_tests)
+ if http_tests:
+ test_lists.insert(0, http_tests)
filename_queue = Queue.Queue()
for item in test_lists:
« 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