From a392afcbda4b53159ff5f9c9d5e53602d18169f4 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Sun, 28 Aug 2016 00:49:35 +0200 Subject: [PATCH] if the test program failed, the script exit immediatly with an error --- test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.sh b/test.sh index ec3fc7954..26736e51b 100644 --- a/test.sh +++ b/test.sh @@ -6,4 +6,4 @@ FILES="hermit/usr/tests/hello hermit/usr/tests/hellof hermit/usr/tests/hello++ hermit/usr/tests/thr_hello hermit/usr/tests/jacobi" PROXY=hermit/tools/proxy -for f in $FILES; do echo "check $f..."; $PROXY $f; done +for f in $FILES; do echo "check $f..."; $PROXY $f || exit 1; done