From 9a47ed883943589c68987a41e5662012131b3536 Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Sat, 8 Aug 2015 22:03:27 -0500 Subject: regrtest: the 'bad' and 'environment_changed' sets of tests don't intersect anymore --- Lib/test/regrtest.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index c97ec52..6708876 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -798,10 +798,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"))) -- cgit v0.12