summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-08-09 03:03:43 (GMT)
committerZachary Ware <zachary.ware@gmail.com>2015-08-09 03:03:43 (GMT)
commit83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad (patch)
treeb452baaeaa7ef5465b1c365552f840cff1354eb3 /Lib/test
parent71a36f735ba8b70a4f6ff51fdc10f1c8df0285da (diff)
parent9a47ed883943589c68987a41e5662012131b3536 (diff)
downloadcpython-83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad.zip
cpython-83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad.tar.gz
cpython-83ee5a315ffbf6e6601cc5c5e7a692d249efb5ad.tar.bz2
Merge 3.4
Diffstat (limited to 'Lib/test')
-rwxr-xr-xLib/test/regrtest.py6
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")))