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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

Issue 2759263002: Add image-first-tests flag to run-webkit-tests (Closed)
Patch Set: fix comments Created 3 years, 9 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: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
index d4f23c97edff3740910097040dc7ee8b82df47fb..8ba82917b926bcc9155634aea1a760ea140dc648 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py
@@ -235,6 +235,15 @@ def parse_args(args):
dest='smoke',
action='store_false',
help='Do not run just the SmokeTests'),
+ optparse.make_option(
+ '--image-first-tests',
+ action='append',
+ default=[],
+ dest='image_first_tests',
+ help='directories or test that will be only checked for image'
+ ' expectation if it\'s available and fall back to test '
+ 'expectation if image expectation is missing (may specify '
+ 'multiple times)'),
qyearsley 2017/03/21 22:44:09 This help text could probably be made a bit cleare
]))
option_group_definitions.append(

Powered by Google App Engine
This is Rietveld 408576698