diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-08-09 03:03:43 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-08-09 03:03:43 (GMT) |
commit | 83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad (patch) | |
tree | b452baaeaa7ef5465b1c365552f840cff1354eb3 /Lib/test | |
parent | 71a36f735ba8b70a4f6ff51fdc10f1c8df0285da (diff) | |
parent | 9a47ed883943589c68987a41e5662012131b3536 (diff) | |
download | cpython-83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad.zip cpython-83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad.tar.gz cpython-83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad.tar.bz2 |
Merge 3.4
Diffstat (limited to 'Lib/test')
-rwxr-xr-x | Lib/test/regrtest.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 5650be0..b49e66b 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -796,10 +796,8 @@ def main(tests=None, **kwargs): for time, test in test_times[:10]: print("%s: %.1fs" % (test, time)) if bad: - bad = sorted(set(bad) - set(environment_changed)) - if bad: - print(count(len(bad), "test"), "failed:") - printlist(bad) + print(count(len(bad), "test"), "failed:") + printlist(bad) if environment_changed: print("{} altered the execution environment:".format( count(len(environment_changed), "test"))) |