Chromium Code Reviews| Index: test/test262/testcfg.py |
| diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py |
| index e54b58993a586f5a2c46f697efa396f506883de9..56ad342f769ed5c9c216ac1ec81a68adb29da431 100644 |
| --- a/test/test262/testcfg.py |
| +++ b/test/test262/testcfg.py |
| @@ -115,7 +115,8 @@ class Test262TestSuite(testsuite.TestSuite): |
| self.harnesspath = os.path.join(self.root, *TEST_262_HARNESS_PATH) |
| 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.harness += [os.path.join(self.root, "harness-adapt.js"), |
| + os.path.join(self.root, "harness-agent.js")] |
|
Dan Ehrenberg
2017/01/28 03:41:06
It would be nice if you could avoid including this
binji
2017/02/18 01:07:59
Done.
|
| self.localtestroot = os.path.join(self.root, *TEST_262_LOCAL_TESTS_PATH) |
| self.ParseTestRecord = None |
| @@ -151,6 +152,7 @@ class Test262TestSuite(testsuite.TestSuite): |
| if "detachArrayBuffer.js" in |
| self.GetTestRecord(testcase).get("includes", []) |
| else []) + |
| + (["--harmony-sharedarraybuffer"]) + |
|
Dan Ehrenberg
2017/01/28 03:41:06
It would be nice to avoid passing this flag for te
binji
2017/02/18 01:07:59
Done.
|
| ([flag for flag in testcase.outcomes if flag.startswith("--")])) |
| def _VariantGeneratorFactory(self): |