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

Unified Diff: test/test262/testcfg.py

Issue 2658933004: [SAB] Test262 Agent harness (Closed)
Patch Set: Created 3 years, 11 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
« test/test262/harness-agent.js ('K') | « test/test262/harness-agent.js ('k') | no next file » | 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 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):
« test/test262/harness-agent.js ('K') | « test/test262/harness-agent.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698