From db476bac57b498173c2b8d9e664cb56242bd73a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 11 Jul 2014 12:31:19 +0300 Subject: [PATCH] Abort directly on errors in the unit test in run_Test.sh Currently it runs all four unit test builds, and an error in any of the earlier three ones will be missed as long as the fourth one succeeds. --- run_Test.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/run_Test.sh b/run_Test.sh index 3cfdb1cc..e582f7e2 100755 --- a/run_Test.sh +++ b/run_Test.sh @@ -29,6 +29,7 @@ runMain() if [ "${TestType}" = "UnitTest" ] then + set -e make -B ENABLE64BIT=Yes BUILDTYPE=Release all plugin test make -B ENABLE64BIT=Yes BUILDTYPE=Debug all plugin test make -B ENABLE64BIT=No BUILDTYPE=Release all plugin test