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

Unified Diff: test/test262/testcfg.py

Issue 2131743002: [test262] Use standalone Test262 harness project (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: itertools.chain Created 4 years, 5 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
« no previous file with comments | « test/test262/list.py ('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 b62e9b0d6b4ffbe99ccb95de871713db440c3e30..c4e2e5c112ab09229375b86656bcd18cba1d47cc 100644
--- a/test/test262/testcfg.py
+++ b/test/test262/testcfg.py
@@ -47,7 +47,10 @@ TEST_262_NATIVE_FILES = ["detachArrayBuffer.js"]
TEST_262_SUITE_PATH = ["data", "test"]
TEST_262_HARNESS_PATH = ["data", "harness"]
-TEST_262_TOOLS_PATH = ["data", "tools", "packaging"]
+TEST_262_TOOLS_PATH = ["harness", "src"]
Michael Achenbach 2016/07/22 07:07:47 Refactoring suggestion, maybe for follow up. I won
+
+sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)),
+ *TEST_262_TOOLS_PATH))
ALL_VARIANT_FLAGS_STRICT = dict(
(v, [flags + ["--use-strict"] for flags in flag_sets])
« no previous file with comments | « test/test262/list.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698