From 22c6c38c7e8b2bc5e12c5666a6806672e769f0a5 Mon Sep 17 00:00:00 2001 From: Hypnosphi Date: Thu, 1 Nov 2018 14:16:41 +0100 Subject: [PATCH] Exit with non-zero code in case of failure --- lib/cli/test/run_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/test/run_tests.sh b/lib/cli/test/run_tests.sh index f3e5c69295b..e303df18119 100755 --- a/lib/cli/test/run_tests.sh +++ b/lib/cli/test/run_tests.sh @@ -73,7 +73,7 @@ do echo "##teamcity[testFinished name='$dir']" elif [ $failed -eq 1 ] then - exit 0 + exit 1 fi cd ..