From d3f2bdb3e656a1dd671a1fc84c60fec6e1783bd1 Mon Sep 17 00:00:00 2001 From: Bernd Flemisch Date: Tue, 7 Feb 2012 21:08:30 +0000 Subject: [PATCH] changed back to the correct behavior in runTest.sh. Actually the default return value of startWithParameters was wrong --- bin/runTest.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/runTest.sh b/bin/runTest.sh index deb9f9c5a..d1d7e403b 100755 --- a/bin/runTest.sh +++ b/bin/runTest.sh @@ -46,7 +46,7 @@ fi echo "######################" echo "# Running test" echo "######################" -if "$TEST_BINARY" $TEST_ARGS; then +if ! "$TEST_BINARY" $TEST_ARGS; then echo "Executing the binary failed!" exit 1 fi