Sort the list of files processed before running the test on each.

This commit is contained in:
Fred Drake 2000-08-23 20:21:31 +00:00
parent 9dcea3f8a8
commit 6baec620b4

View file

@ -40,11 +40,9 @@ def test():
if not args: if not args:
import glob import glob
args = glob.glob("*.py") args = glob.glob("*.py")
args.sort()
map(testFile, args) map(testFile, args)
sys.exit(_numFailed != 0) sys.exit(_numFailed != 0)
if __name__ == '__main__': if __name__ == '__main__':
test() test()
#
# end of file