| Index: test/test262/testcfg.py
|
| diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py
|
| index 93d891530e07f1af43d64fbb4b96e23e46cf7472..6319feb13c2e0a23006d45669f05077c7ff8655c 100644
|
| --- a/test/test262/testcfg.py
|
| +++ b/test/test262/testcfg.py
|
| @@ -121,7 +121,7 @@ class Test262TestSuite(testsuite.TestSuite):
|
| dirs.sort()
|
| files.sort()
|
| for filename in files:
|
| - if filename.endswith(".js"):
|
| + if filename.endswith(".js") and not filename.endswith("_FIXTURE.js"):
|
| fullpath = os.path.join(dirname, filename)
|
| relpath = fullpath[len(self.testroot) + 1 : -3]
|
| testname = relpath.replace(os.path.sep, "/")
|
|
|