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

Unified Diff: tools/run-tests.py

Issue 486853004: test262.status: ES6 tests pass when harmony Base URL: git@github.com:smikes/v8.git@master
Patch Set: Created 6 years, 4 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
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,

Powered by Google App Engine
This is Rietveld 408576698