| Index: tools/run-tests.py
|
| diff --git a/tools/run-tests.py b/tools/run-tests.py
|
| index 6e9f5549d811b44b488feb94c3d431ffdbac1825..fe929eef443132b592d08fc67e239de75d02dfe7 100755
|
| --- a/tools/run-tests.py
|
| +++ b/tools/run-tests.py
|
| @@ -152,6 +152,8 @@ def BuildOptions():
|
| result.add_option("--no-i18n", "--noi18n",
|
| help="Skip internationalization tests",
|
| default=False, action="store_true")
|
| + result.add_option("--harmony", help="Run with ES6 features enabled (--harmony)",
|
| + default=False, action="store_true")
|
| result.add_option("--no-network", "--nonetwork",
|
| help="Don't distribute tests on the network",
|
| default=(utils.GuessOS() != "linux"),
|
| @@ -449,7 +451,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.harmony)
|
|
|
| # TODO(all): Combine "simulator" and "simulator_run".
|
| simulator_run = not options.dont_skip_simulator_slow_tests and \
|
| @@ -460,6 +463,7 @@ def Execute(arch, mode, args, options, suites, workspace):
|
| "asan": options.asan,
|
| "deopt_fuzzer": False,
|
| "gc_stress": options.gc_stress,
|
| + "harmony": options.harmony,
|
| "isolates": options.isolates,
|
| "mode": mode,
|
| "no_i18n": options.no_i18n,
|
|
|