Add use_tls option for interop tests

This commit is contained in:
Lucio Franco
2019-09-02 18:20:22 -04:00
parent b82439af17
commit 6d09f4de25
5 changed files with 22 additions and 23 deletions
+2 -2
View File
@@ -12,7 +12,7 @@ esac
SERVER="tonic-interop/bin/server_${OS}_amd64"
# run the test server
./"${SERVER}" &
./"${SERVER}" $1 &
SERVER_PID=$!
echo ":; started grpc-go test server."
@@ -23,4 +23,4 @@ trap 'echo ":; killing test server"; kill ${SERVER_PID};' EXIT
cargo run -p tonic-interop --bin client -- \
--test_case=empty_unary,large_unary,client_streaming,server_streaming,ping_pong,\
empty_stream,status_code_and_message,special_status_message,unimplemented_method,\
unimplemented_service,custom_metadata
unimplemented_service,custom_metadata $1