Reviewers: Jakob,
Description:
Unbreak waterfall after r12968.
[email protected]
TEST=test262
Please review this at https://codereview.chromium.org/11416008/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M test/test262/testcfg.py
Index: test/test262/testcfg.py
diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py
index
55e2c6b4a1be1f32aff678107583c24961ccc87e..f937442f5d976b429ee5eb58020435dc99a35229
100644
--- a/test/test262/testcfg.py
+++ b/test/test262/testcfg.py
@@ -179,6 +179,8 @@ class Test262TestConfiguration(test.TestConfiguration):
for root, dirs, files in os.walk(testroot):
for dotted in [x for x in dirs if x.startswith('.')]:
dirs.remove(dotted)
+ for skipped in [x for x in dirs if x in TEST_262_SKIP]:
+ dirs.remove(skipped)
dirs.sort()
root_path = root[len(self.root):].split(os.path.sep)
root_path = current_path + [x for x in root_path if x]
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev