##// END OF EJS Templates
run-tests: only sort files when not given as argument...
Simon Heimberg -
r18788:05d544d1 default
parent child Browse files
Show More
@@ -1244,8 +1244,7 b' def main():'
1244 checktools()
1244 checktools()
1245
1245
1246 if len(args) == 0:
1246 if len(args) == 0:
1247 args = os.listdir(".")
1247 args = sorted(os.listdir("."))
1248 args.sort()
1249
1248
1250 tests = args
1249 tests = args
1251
1250
General Comments 0
You need to be logged in to leave comments. Login now