changed back to the correct behavior in runTest.sh. Actually the default return value of startWithParameters was wrong

This commit is contained in:
Bernd Flemisch
2012-07-12 21:24:48 +02:00
committed by Andreas Lauser
parent 106f6ee842
commit d3f2bdb3e6
+1 -1
View File
@@ -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