From 0c03ca0dbac42fb1d5006d2e11f682a3de2a9051 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 20 Mar 2016 09:25:40 +0100 Subject: make test runner exit with non-0 return status on exceptions (this shadowed an actual bug in this branch) --- runtests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/runtests.py b/runtests.py index 4b71d6d0a..c3286fcf3 100755 --- a/runtests.py +++ b/runtests.py @@ -2100,3 +2100,4 @@ if __name__ == '__main__': except PendingThreadsError: # normal program exit won't kill the threads, do it the hard way here flush_and_terminate(1) + sys.exit(1) -- cgit v1.2.1