Skip to content

Commit

Permalink
buildscripts, psm interop: Don't fail target if sub-target already fa…
Browse files Browse the repository at this point in the history
…iled (#10241)

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: 
grpc/grpc#33222.
  • Loading branch information
XuanWang-Amos authored Jun 2, 2023
1 parent 1c755d1 commit 6e2d546
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions buildscripts/kokoro/psm-security.sh
Original file line number Diff line number Diff line change
Expand Up @@ -179,9 +179,6 @@ main() {
run_test $test || (( ++failed_tests ))
done
echo "Failed test suites: ${failed_tests}"
if (( failed_tests > 0 )); then
exit 1
fi
}

main "$@"
3 changes: 0 additions & 3 deletions buildscripts/kokoro/xds_k8s_lb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@"

0 comments on commit 6e2d546

Please sign in to comment.