Chromium Code Reviews| Index: tools/run-tests.py |
| diff --git a/tools/run-tests.py b/tools/run-tests.py |
| index e8c1b4d884b9e43d24a48dd018ccf262182335ba..1b8fdd3e13d3c0fad9fbd60d407b6d2543ec1113 100755 |
| --- a/tools/run-tests.py |
| +++ b/tools/run-tests.py |
| @@ -235,6 +235,8 @@ def BuildOptions(): |
| result.add_option("--extra-flags", |
| help="Additional flags to pass to each test command", |
| default="") |
| + result.add_option("--ignition", help="Skip tests which don't run in ignition", |
| + 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", |
| @@ -681,6 +683,7 @@ def Execute(arch, mode, args, options, suites): |
| "asan": options.asan, |
| "deopt_fuzzer": False, |
| "gc_stress": options.gc_stress, |
| + "ignition": options.ignition, |
|
Michael Achenbach
2015/11/06 10:58:46
Please add a "ignition": False to run-deopt-fuzzer
rmcilroy
2015/11/06 17:40:02
Done.
|
| "isolates": options.isolates, |
| "mode": MODES[mode]["status_mode"], |
| "no_i18n": options.no_i18n, |