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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/test.py

Issue 1161863003: Add an additional content_shell per worker for running virtual tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@virtual_reference_flags
Patch Set: fix docstring for Driver.run_test() Created 5 years, 7 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
Index: Tools/Scripts/webkitpy/layout_tests/port/test.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/test.py b/Tools/Scripts/webkitpy/layout_tests/port/test.py
index ea1f8ec5e2d0665e2b6b4fb1b85c0904a233f619..c4399b7232fc0c2119a326082557decafab2a072 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/test.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/test.py
@@ -103,7 +103,7 @@ class TestList(object):
#
# These numbers may need to be updated whenever we add or delete tests. This includes virtual tests.
#
-TOTAL_TESTS = 113
+TOTAL_TESTS = 114
TOTAL_SKIPS = 29
UNEXPECTED_PASSES = 1
@@ -550,6 +550,8 @@ class TestPort(Port):
return [
VirtualTestSuite(prefix='virtual_passes', base='passes', args=['--virtual-arg']),
VirtualTestSuite(prefix='skipped', base='failures/expected', args=['--virtual-arg2']),
+ VirtualTestSuite(prefix='references_use_default_args', base='passes/reftest.html',
+ args=['--virtual-arg'], references_use_default_args=True),
]

Powered by Google App Engine
This is Rietveld 408576698