Index: test/test262/testcfg.py |
diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py |
index f723eb01c382bb5274eb75fbb9e40920639a3157..89f729d9a34a533d8c58e0d1bca40d9e0ad0bf19 100644 |
--- a/test/test262/testcfg.py |
+++ b/test/test262/testcfg.py |
@@ -59,6 +59,8 @@ class Test262TestSuite(testsuite.TestSuite): |
for dirname, dirs, files in os.walk(self.testroot): |
for dotted in [x for x in dirs if x.startswith(".")]: |
dirs.remove(dotted) |
+ if context.noi18n and "intl402" in dirs: |
+ dirs.remove("intl402") |
dirs.sort() |
files.sort() |
for filename in files: |