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

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

Issue 2088713002: blink/run-webkit-tests: Write layout test environment to json file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@random-order-seeded
Patch Set: Created 4 years, 6 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 d01217095fafe55b7842be09c50d8b7091a519e0..de90628090b36913a632355f914fc15b40d2e139 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
@@ -84,6 +84,16 @@ def main(argv, stdout, stderr):
def parse_args(args):
option_group_definitions = []
+ # Internal / hidden options which shouldn't be used by users.
+ option_group_definitions.append(
+ ("Internal / Hidden Options", [
+ optparse.make_option(
+ "--dummy-arg",
+ action="append",
+ default=[],
+ help=optparse.SUPPRESS_HELP),
+ ]))
Dirk Pranke 2016/06/21 21:57:54 Don't add stuff to the main code just for testing
+
option_group_definitions.append(
("Platform options", platform_options()))

Powered by Google App Engine
This is Rietveld 408576698