# HG changeset patch # User Matt Mackall # Date 2006-11-08 19:20:08 # Node ID a90a86929d046cc23f7b175456ad7e29f030f109 # Parent 44247ecc2965f46b5794e675bcc77961c604facf tests: sort test list if running all tests diff --git a/tests/run-tests.py b/tests/run-tests.py --- a/tests/run-tests.py +++ b/tests/run-tests.py @@ -361,6 +361,8 @@ try: if len(args) == 0: args = os.listdir(".") + args.sort() + for test in args: if (test.startswith("test-") and '~' not in test and ('.' not in test or test.endswith('.py') or