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

Unified Diff: test/test262/testcfg.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 | « test/test262/test262.status ('k') | tools/run-deopt-fuzzer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test262/testcfg.py
diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py
index 18b64e3e748833c97e24cbc521ec0363ad95b9de..f222e1e37d9e6e37369249d73f06c22d1db7c0d6 100644
--- a/test/test262/testcfg.py
+++ b/test/test262/testcfg.py
@@ -103,7 +103,6 @@ class Test262TestSuite(testsuite.TestSuite):
self.harness = [os.path.join(self.harnesspath, f)
for f in TEST_262_HARNESS_FILES]
self.harness += [os.path.join(self.root, "harness-adapt.js")]
- self.ignition_script_filter = "--ignition-script-filter=" + self.testroot
self.ParseTestRecord = None
def ListTests(self, context):
@@ -125,13 +124,7 @@ class Test262TestSuite(testsuite.TestSuite):
return tests
def GetFlagsForTestCase(self, testcase, context):
- # TODO(rmcilroy) Remove ignition filter modification once ignition can
- # support the test262 test harness code.
- flags = testcase.flags
- if '--ignition' in flags:
- flags += [self.ignition_script_filter, "--ignition-fake-try-catch"]
-
- return (flags + context.mode_flags + self.harness +
+ return (testcase.flags + context.mode_flags + self.harness +
self.GetIncludesForTest(testcase) + ["--harmony"] +
[os.path.join(self.testroot, testcase.path + ".js")])
« no previous file with comments | « test/test262/test262.status ('k') | tools/run-deopt-fuzzer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698