diff -r cefcbbc5502c -r 3a049b21a05b tests/run-tests.py --- a/tests/run-tests.py Thu Mar 21 08:56:21 2013 +0100 +++ b/tests/run-tests.py Wed Apr 17 03:41:34 2013 +0200 @@ -198,6 +198,8 @@ help="enable Py3k warnings on Python 2.6+") parser.add_option('--extra-config-opt', action="append", help='set the given config opt in the test hgrc') + parser.add_option('--random', action="store_true", + help='run tests in random order') for option, (envvar, default) in defaults.items(): defaults[option] = type(default)(os.environ.get(envvar, default)) @@ -1248,6 +1250,9 @@ tests = args + if options.random: + random.shuffle(tests) + # Reset some environment variables to well-known values so that # the tests produce repeatable output. os.environ['LANG'] = os.environ['LC_ALL'] = os.environ['LANGUAGE'] = 'C'