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

Unified Diff: tools/testrunner/local/testsuite.py

Issue 1420963009: [Interpreter]: Add ignition blacklist to mjsunit.status and test262.status. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add ignition variable to run-deopt-fuzzer Created 5 years, 1 month 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
« no previous file with comments | « tools/run-tests.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testrunner/local/testsuite.py
diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py
index f1f881271e771535f154f1cafffee8618f229b52..449a65aa136ee650f3090f1824c9ba439502f54e 100644
--- a/tools/testrunner/local/testsuite.py
+++ b/tools/testrunner/local/testsuite.py
@@ -41,7 +41,9 @@ ALL_VARIANT_FLAGS = {
"turbofan": [["--turbo"]],
"turbofan_opt": [["--turbo", "--always-opt"]],
"nocrankshaft": [["--nocrankshaft"]],
- "ignition": [["--ignition", "--ignition-filter=*"]],
+ "ignition": [["--ignition", "--ignition-filter=*",
+ "--ignition-fake-try-catch",
+ "--ignition-fallback-on-eval-and-catch"]],
}
# FAST_VARIANTS implies no --always-opt.
@@ -50,7 +52,9 @@ FAST_VARIANT_FLAGS = {
"stress": [["--stress-opt"]],
"turbofan": [["--turbo"]],
"nocrankshaft": [["--nocrankshaft"]],
- "ignition": [["--ignition", "--ignition-filter=*"]],
+ "ignition": [["--ignition", "--ignition-filter=*",
+ "--ignition-fake-try-catch",
+ "--ignition-fallback-on-eval-and-catch"]],
}
ALL_VARIANTS = set(["default", "stress", "turbofan", "turbofan_opt",
« no previous file with comments | « tools/run-tests.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698