Fixing test script to return 0 on success

This commit is contained in:
Tyler Akins
2021-11-25 16:02:21 -06:00
parent 81f9ec326d
commit 54195a6c6e

View File

@@ -40,4 +40,6 @@ done
echo "" echo ""
echo "Pass: $PASS" echo "Pass: $PASS"
echo "Fail: $FAIL" echo "Fail: $FAIL"
[[ $FAIL -gt 0 ]] && exit 1 if [[ $FAIL -gt 0 ]]; then
exit 1
fi