Fix invalid use of return in bash test runner

This commit is contained in:
Wilhelmina Drengwitz
2016-08-28 15:29:29 -04:00
parent 942f2bdd90
commit 121803b857

View File

@@ -12,8 +12,8 @@ done
if [ "$failed" = "true" ]; then if [ "$failed" = "true" ]; then
echo "Tests failed!" echo "Tests failed!"
return 1; false
else else
echo "All tests passed!" echo "All tests passed!"
return 0; true
fi fi