# HG changeset patch # User Matt Mackall # Date 1370208575 18000 # Node ID f3effc4992887a4abb979ce0ff593fcb17476868 # Parent 16df87e25f41522fc6e1e54bc6dd7711a687cdb1 run-tests: add abort flag This will be used to help threads clean up gracefully diff -r 16df87e25f41 -r f3effc499288 tests/run-tests.py --- a/tests/run-tests.py Sun Jun 02 16:29:22 2013 -0500 +++ b/tests/run-tests.py Sun Jun 02 16:29:35 2013 -0500 @@ -863,6 +863,9 @@ if ret: killdaemons(env['DAEMON_PIDS']) + if abort: + raise KeyboardInterrupt() + for s, r in replacements: output = re.sub(s, r, output) return ret, output.splitlines(True) @@ -1182,6 +1185,7 @@ resultslock = threading.Lock() times = [] iolock = threading.Lock() +abort = False def runqueue(options, tests): for test in tests: