aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/handshake/client_ssl.cc
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2017-12-08 13:03:05 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2017-12-08 13:56:39 -0800
commit280281fd4dcef2f4958185cd73b62d70df6f1767 (patch)
tree32c4c152bbf61e64f9946cb2a316af90124fcd3a /test/core/handshake/client_ssl.cc
parenta77fb7dc6792a48edc30100482032844c56feedc (diff)
parent94e676e10f8c739289924b8458a246699e3623ce (diff)
Merge branch 'master' of https://github.com/grpc/grpc into flow-control-part4
Diffstat (limited to 'test/core/handshake/client_ssl.cc')
-rw-r--r--test/core/handshake/client_ssl.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/core/handshake/client_ssl.cc b/test/core/handshake/client_ssl.cc
index 2b149a73b3..2302e3da2f 100644
--- a/test/core/handshake/client_ssl.cc
+++ b/test/core/handshake/client_ssl.cc
@@ -231,7 +231,8 @@ static bool client_ssl_test(char* server_alpn_preferred) {
gpr_thd_id thdid;
gpr_thd_options_set_joinable(&thdopt);
server_args args = {server_socket, server_alpn_preferred};
- GPR_ASSERT(gpr_thd_new(&thdid, server_thread, &args, &thdopt));
+ GPR_ASSERT(gpr_thd_new(&thdid, "grpc_client_ssl_test", server_thread, &args,
+ &thdopt));
// Load key pair and establish client SSL credentials.
grpc_ssl_pem_key_cert_pair pem_key_cert_pair;