Skip to content

Commit 6894b4b

Browse files
[PSM interop] Don't fail target if sub-target already failed (#33222) (#33303)
We configured TestGrid to file bug separately for each failed sub-target, if we still fail the main target, TestGrid will fail duplicate bugs. <!-- If you know who should review your pull request, please assign it to that person, otherwise the pull request would get assigned randomly. If your pull request is for a specific language, please add the appropriate lang label. -->
1 parent bd68b35 commit 6894b4b

5 files changed

Lines changed: 0 additions & 15 deletions

File tree

tools/internal_ci/linux/grpc_xds_k8s_lb.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,6 @@ main() {
174174
run_test $test || (( ++failed_tests ))
175175
done
176176
echo "Failed test suites: ${failed_tests}"
177-
if (( failed_tests > 0 )); then
178-
exit 1
179-
fi
180177
}
181178

182179
main "$@"

tools/internal_ci/linux/grpc_xds_k8s_lb_python.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,6 @@ main() {
179179
run_test $test || (( ++failed_tests ))
180180
done
181181
echo "Failed test suites: ${failed_tests}"
182-
if (( failed_tests > 0 )); then
183-
exit 1
184-
fi
185182
}
186183

187184
main "$@"

tools/internal_ci/linux/grpc_xds_k8s_xlang.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,6 @@ main() {
9696
set +x
9797
echo "Failed test suites list: ${failed_string}"
9898
echo "Successful test suites list: ${successful_string}"
99-
if (( failed_tests > 0 )); then
100-
exit 1
101-
fi
10299
}
103100

104101
main "$@"

tools/internal_ci/linux/psm-security-python.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,6 @@ main() {
179179
run_test $test || (( ++failed_tests ))
180180
done
181181
echo "Failed test suites: ${failed_tests}"
182-
if (( failed_tests > 0 )); then
183-
exit 1
184-
fi
185182
}
186183

187184
main "$@"

tools/internal_ci/linux/psm-security.sh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,6 @@ main() {
163163
run_test $test || (( ++failed_tests ))
164164
done
165165
echo "Failed test suites: ${failed_tests}"
166-
if (( failed_tests > 0 )); then
167-
exit 1
168-
fi
169166
}
170167

171168
main "$@"

0 commit comments

Comments
 (0)