From bbfef597aa0dc5bf2fde950be1444a7e35008e01 Mon Sep 17 00:00:00 2001 From: Bernd Flemisch <bernd@iws.uni-stuttgart.de> Date: Thu, 4 Oct 2012 15:27:50 +0000 Subject: [PATCH] runTest.sh: remove test for file existence and double quotes to allow parallel testing git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@9198 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- bin/runTest.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/bin/runTest.sh b/bin/runTest.sh index d08a661d73..a962df73b7 100755 --- a/bin/runTest.sh +++ b/bin/runTest.sh @@ -34,19 +34,11 @@ if ! test -r "$REFERENCE_RESULT"; then exit 1 fi -# make sure the binary is of the test is present -if ! test -x "$TEST_BINARY"; then - echo "$TEST_BINARY does not exist or is not executable" - echo - usage - exit 1 -fi - #run the test 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 -- GitLab