aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/run_tests.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/run_tests.py b/test/run_tests.py
index 39b093685da..1b9c677df26 100644
--- a/test/run_tests.py
+++ b/test/run_tests.py
@@ -58,4 +58,5 @@ if __name__ == '__main__':
for d in args.dir:
print("Adding tests from directory tree %s" % d)
add_from_dir(suite, d)
- VppTestRunner(verbosity=verbose, failfast=failfast).run(suite)
+ sys.exit(not VppTestRunner(verbosity=verbose,
+ failfast=failfast).run(suite).wasSuccessful())