diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-08-23 17:32:26 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-08-23 17:32:26 (GMT) |
commit | b897168eb66a55de025fbff0fd1dccae7497e6b9 (patch) | |
tree | eddc4267a3d57b3b4621608f0b83b3c58ea01907 | |
parent | 7cc1fb073df5cd4d1c6790d14b8767d3690322cc (diff) | |
download | cpython-b897168eb66a55de025fbff0fd1dccae7497e6b9.zip cpython-b897168eb66a55de025fbff0fd1dccae7497e6b9.tar.gz cpython-b897168eb66a55de025fbff0fd1dccae7497e6b9.tar.bz2 |
A warning doesn't equate a failed test
(this broken -F with e.g. test_multiprocessing)
-rwxr-xr-x | Lib/test/regrtest.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 077434b..d32fc8d 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -515,7 +515,6 @@ def main(tests=None, testdir=None, verbose=0, quiet=False, elif ok == FAILED: bad.append(test) elif ok == ENV_CHANGED: - bad.append(test) environment_changed.append(test) elif ok == SKIPPED: skipped.append(test) |