make test failures clearer

This commit is contained in:
pokeeffe-molecula 2022-01-10 08:24:11 -06:00
parent 286953c5fc
commit 320ae1a8b2

View file

@ -39,5 +39,11 @@ then
exit 1
fi
echo "Smoke test complete"
exit $SMOKETESTRESULT
if (( $SMOKETESTRESULT != 0 ))
then
echo "Smoke test complete with test failures"
else
echo "Smoke test complete"
fi
exit $SMOKETESTRESULT