Index: tools/run-tests.py |
diff --git a/tools/run-tests.py b/tools/run-tests.py |
index 1374de929189fcd2a1a8de0cc06ac1dc7778615a..21a2c3b4ffe5ffa96bb11711275ce39e43ddbaee 100755 |
--- a/tools/run-tests.py |
+++ b/tools/run-tests.py |
@@ -175,6 +175,9 @@ def BuildOptions(): |
result.add_option("-m", "--mode", |
help="The test modes in which to run (comma-separated)", |
default="release,debug") |
+ result.add_option("--no-harness", "--noharness", |
+ help="Run without test harness of a given suite", |
+ default=False, action="store_true") |
result.add_option("--no-i18n", "--noi18n", |
help="Skip internationalization tests", |
default=False, action="store_true") |
@@ -492,7 +495,8 @@ def Execute(arch, mode, args, options, suites, workspace): |
options.no_sorting, |
options.rerun_failures_count, |
options.rerun_failures_max, |
- options.predictable) |
+ options.predictable, |
+ options.no_harness) |
# TODO(all): Combine "simulator" and "simulator_run". |
simulator_run = not options.dont_skip_simulator_slow_tests and \ |