| Index: test/test262/testcfg.py
|
| diff --git a/test/test262/testcfg.py b/test/test262/testcfg.py
|
| index b357ce96a8bb467b6563bea4992f7bb39b04189a..96005901a0e20557b5c0e186d7663a14c4406cbf 100644
|
| --- a/test/test262/testcfg.py
|
| +++ b/test/test262/testcfg.py
|
| @@ -232,7 +232,8 @@ class Test262TestSuite(testsuite.TestSuite):
|
| "--use-strict" not in testcase.flags):
|
| return outcome != statusfile.FAIL
|
| return not outcome in ([outcome for outcome in testcase.outcomes
|
| - if not outcome.startswith('--')]
|
| + if not outcome.startswith('--')
|
| + and outcome != statusfile.FAIL_SLOPPY]
|
| or [statusfile.PASS])
|
|
|
| def PrepareSources(self):
|
|
|