tests/run-tests.py
branchstable
changeset 1335 d15090c7d555
parent 1334 2ff0ff8404a5
child 1336 c213fb7b786f
--- a/tests/run-tests.py	Thu Feb 13 07:29:28 2014 +0100
+++ b/tests/run-tests.py	Thu Feb 13 08:02:06 2014 +0100
@@ -1163,7 +1163,7 @@
         print "\ninterrupted!"
 
     if failed:
-        sys.exit(1)
+        return 1
 
 testtypes = [('.py', pytest, '.out'),
              ('.t', tsttest, '')]
@@ -1273,7 +1273,7 @@
     vlog("# Using", IMPL_PATH, os.environ[IMPL_PATH])
 
     try:
-        runtests(options, tests)
+        sys.exit(runtests(options, tests) or 0)
     finally:
         time.sleep(.1)
         cleanup(options)