mirror of https://github.com/grpc/grpc-java.git
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:
parent
17b2df78ec
commit
02ac6f4393
|
@ -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 "$@"
|
||||
|
|
|
@ -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 "$@"
|
||||
|
|
Loading…
Reference in New Issue