buildscripts, psm interop: Don't fail target if sub-target already failed

We configured TestGrid to file bug separately for each 
failed sub-target, if we still fail the main target, 
TestGrid will fail duplicate bugs.

The same change in core: 
https://github.com/grpc/grpc/pull/33222.
This commit is contained in:
Xuan Wang 2023-05-31 17:37:46 -07:00 committed by GitHub
parent 17b2df78ec
commit 02ac6f4393
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 6 deletions

View File

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

View File

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