Don't fail target if sub-target already failed

This commit is contained in:
Xuan Wang 2023-06-01 00:00:47 +00:00
parent 892f16e175
commit cd87b1287f
1 changed files with 0 additions and 3 deletions

View File

@ -170,9 +170,6 @@ main() {
run_test $test || (( ++failed_tests ))
done
echo "Failed test suites: ${failed_tests}"
if (( failed_tests > 0 )); then
exit 1
fi
}
main "$@"