# HG changeset patch # User Simon Heimberg # Date 1389868014 -3600 # Node ID bb4aac9b048cf3b36b841a4045341bf39ff5a7a3 # Parent 3cd441353d6ba351b5e9431048726f477e371cfc run-tests: set the thread name to the test name for info on error This does not happen when running normal. But when fiddling around with the test infrastructure, this helps a lot. Old traceback messge Exception in thread Thread-7: Traceback (most recent call last): ... new traceback message Exception in thread test-something.t: Traceback (most recent call last): ... diff -r 3cd441353d6b -r bb4aac9b048c tests/run-tests.py --- a/tests/run-tests.py Thu Jan 16 18:55:35 2014 +0100 +++ b/tests/run-tests.py Thu Jan 16 11:26:54 2014 +0100 @@ -1096,7 +1096,7 @@ test = tests.pop(0) if options.loop: tests.append(test) - t = threading.Thread(target=job, args=(test, count)) + t = threading.Thread(target=job, name=test, args=(test, count)) t.start() running += 1 count += 1