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

changed back to the correct behavior in runTest.sh. Actually the default...

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

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7662 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 62a28aa3
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -516,7 +516,7 @@ int startWithParameters_(int argc,
if (printParams && mpiHelper.rank() == 0) {
Dumux::Parameters::print<TypeTag>();
}
return 1;
return 0;
}
......
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