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

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

Issue 62090: Ensure that the http tests are always run first since they (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 13225)
+++ webkit/tools/layout_tests/run_webkit_tests.py (working copy)
@@ -354,9 +354,18 @@
# Keep the tests in alphabetical order.
# TODO: Remove once tests are fixed so they can be run in any order.
test_list.reverse()
- test_lists.append((directory, test_list))
+ test_list_tuple = (directory, test_list)
+ if directory == 'LayoutTests' + os.sep + 'http':
+ http_tests = test_list_tuple
+ else:
+ test_lists.append(test_list_tuple)
test_lists.sort(lambda a, b: cmp(len(b), len(a)))
+ # 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)
+
filename_queue = Queue.Queue()
for item in test_lists:
filename_queue.put(item)
« 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