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

Unified Diff: tools/run-tests.py

Issue 1922623003: [Interpreter] Prepare switching to new ignition testing variant. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | « tools/run-deopt-fuzzer.py ('k') | tools/testrunner/local/testsuite.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/run-tests.py
diff --git a/tools/run-tests.py b/tools/run-tests.py
index fb32c28799677d59684053b3556422a061a36c57..b826d6ffad2e3495e5317ecc02dedd75f9b84365 100755
--- a/tools/run-tests.py
+++ b/tools/run-tests.py
@@ -255,6 +255,9 @@ def BuildOptions():
default="")
result.add_option("--ignition", help="Skip tests which don't run in ignition",
default=False, action="store_true")
+ result.add_option("--ignition-turbofan",
+ help="Skip tests which don't run in ignition_turbofan",
+ default=False, action="store_true")
result.add_option("--isolates", help="Whether to test isolates",
default=False, action="store_true")
result.add_option("-j", help="The number of parallel tasks to run",
@@ -720,6 +723,7 @@ def Execute(arch, mode, args, options, suites):
"gc_stress": options.gc_stress,
"gcov_coverage": options.gcov_coverage,
"ignition": options.ignition,
+ "ignition_turbofan": options.ignition_turbofan,
"isolates": options.isolates,
"mode": MODES[mode]["status_mode"],
"no_i18n": options.no_i18n,
« no previous file with comments | « tools/run-deopt-fuzzer.py ('k') | tools/testrunner/local/testsuite.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698