]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Make sure the output lists are sorted, even if run with -r.
authorJeremy Hylton <jeremy@alum.mit.edu>
Wed, 17 Oct 2001 13:45:28 +0000 (13:45 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Wed, 17 Oct 2001 13:45:28 +0000 (13:45 +0000)
Lib/test/regrtest.py

index 6e5f91b7b582649426f1f91affd3a535086c6ba6..1f9efa724a2979bc27ca565911751d759e50aa35 100755 (executable)
@@ -194,6 +194,12 @@ def main(tests=None, testdir=None, verbose=0, quiet=0, generate=0,
         for module in sys.modules.keys():
             if module not in save_modules and module.startswith("test."):
                 test_support.unload(module)
+
+    # The lists won't be sorted if running with -r
+    good.sort()
+    bad.sort()
+    skipped.sort()
+    
     if good and not quiet:
         if not bad and not skipped and len(good) > 1:
             print "All",