Kaydet (Commit) 6baec620 authored tarafından Fred Drake's avatar Fred Drake

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

üst 9dcea3f8
...@@ -40,11 +40,9 @@ def test(): ...@@ -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
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment