From: Fred Drake Date: Wed, 23 Aug 2000 20:21:31 +0000 (+0000) Subject: Sort the list of files processed before running the test on each. X-Git-Tag: v2.0b1~292 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6baec620b400e94e2014c735bff17dd21c1c3f19;p=thirdparty%2FPython%2Fcpython.git Sort the list of files processed before running the test on each. --- diff --git a/Demo/parser/test_parser.py b/Demo/parser/test_parser.py index 3f02a9643d87..be39bca7f035 100755 --- a/Demo/parser/test_parser.py +++ b/Demo/parser/test_parser.py @@ -40,11 +40,9 @@ def test(): if not args: import glob args = glob.glob("*.py") + args.sort() map(testFile, args) sys.exit(_numFailed != 0) if __name__ == '__main__': test() - -# -# end of file