| 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]
|
|
|