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

Unified Diff: test/test262/list.py

Issue 2611793002: [test] Process to locally develop and upstream test262 tests (Closed)
Patch Set: Cleanup nit 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
« no previous file with comments | « test/test262/archive.py ('k') | test/test262/local-tests/test/intl402/DateTimeFormat/12.1.1_1.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/test262/list.py
diff --git a/test/test262/list.py b/test/test262/list.py
index 9b36ce789c5baa217d118ecb5e5294c86336ffa7..a5c3c48f8049ea0bb2f00db5ef0e1f583fcc88ad 100755
--- a/test/test262/list.py
+++ b/test/test262/list.py
@@ -10,7 +10,8 @@ from itertools import chain
os.chdir(os.path.dirname(os.path.abspath(__file__)))
-for root, dirs, files in chain(os.walk("data"), os.walk("harness")):
+for root, dirs, files in chain(os.walk("data"), os.walk("harness"),
+ os.walk("local-tests")):
dirs[:] = [d for d in dirs if not d.endswith('.git')]
for name in files:
# These names are for gyp, which expects slashes on all platforms.
« no previous file with comments | « test/test262/archive.py ('k') | test/test262/local-tests/test/intl402/DateTimeFormat/12.1.1_1.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698