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, |