mirror of https://github.com/grpc/grpc-go.git
interop: Don't fail target if sub-target already failed (#6332)
This commit is contained in:
parent
1f23f6c2e0
commit
47f8ed8172
|
|
@ -161,9 +161,6 @@ main() {
|
|||
run_test $test || (( ++failed_tests ))
|
||||
done
|
||||
echo "Failed test suites: ${failed_tests}"
|
||||
if (( failed_tests > 0 )); then
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
main "$@"
|
||||
|
|
|
|||
|
|
@ -172,9 +172,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