Skip to content

Commit dee4b5d

Browse files
author
fdrake
committed
Sort the list of files processed before running the test on each. git-svn-id: http://svn.python.org/projects/python/trunk@16957 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent fe954f6 commit dee4b5d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Demo/parser/test_parser.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,9 @@ def test():
4040
if not args:
4141
import glob
4242
args = glob.glob("*.py")
43+
args.sort()
4344
map(testFile, args)
4445
sys.exit(_numFailed != 0)
4546

4647
if __name__ == '__main__':
4748
test()
48-
49-
#
50-
# end of file

0 commit comments

Comments
 (0)