Skip to content
Snippets Groups Projects
Commit bbfef597 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

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
parent ef380223
No related merge requests found
...@@ -34,19 +34,11 @@ if ! test -r "$REFERENCE_RESULT"; then ...@@ -34,19 +34,11 @@ if ! test -r "$REFERENCE_RESULT"; then
exit 1 exit 1
fi 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 #run the test
echo "######################" echo "######################"
echo "# Running test" echo "# Running test"
echo "######################" echo "######################"
if ! "$TEST_BINARY" $TEST_ARGS; then if ! $TEST_BINARY $TEST_ARGS; then
echo "Executing the binary failed!" echo "Executing the binary failed!"
exit 1 exit 1
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment