summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xrun_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 61a00f5f1..a644eefdc 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -63,4 +63,5 @@ if __name__ == '__main__':
for test_num, test_cls in enumerate(TESTS):
print 'Starting test %d of %d with config: %s' % \
(test_num + 1, len(TESTS), test_cls.config_name)
- test_cls().run()
+ if test_cls().run():
+ exit(1)