Merge pull request #2323 from sergiitk/xds-interop-fix-buildscript-suites

xds interop: Fix buildscripts not continuing on a failed test suite
This commit is contained in:
Michael Lumish 2023-01-17 09:58:24 -08:00 committed by Sergii Tkachenko
parent a9f87fcc3c
commit d441aa687d
1 changed files with 1 additions and 1 deletions

View File

@ -167,7 +167,7 @@ main() {
local failed_tests=0
test_suites=("baseline_test" "api_listener_test" "change_backend_service_test" "failover_test" "remove_neg_test" "round_robin_test" "outlier_detection_test")
for test in "${test_suites[@]}"; do
run_test $test || (( failed_tests++ ))
run_test $test || (( ++failed_tests ))
done
echo "Failed test suites: ${failed_tests}"
if (( failed_tests > 0 )); then