aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/security
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-09-04 00:38:52 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2015-09-04 00:38:52 +0200
commita4d4b60fd8cd894a5d6aeea05657e83535b76458 (patch)
tree54164195659ea57019a71a6aa0025a6dc8e636c3 /test/core/security
parent9455a4ec2d415d7e2466c09ef1f0a9642aa3fbd7 (diff)
Secure endpoint test should call grpc_init.
Diffstat (limited to 'test/core/security')
-rw-r--r--test/core/security/secure_endpoint_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/core/security/secure_endpoint_test.c b/test/core/security/secure_endpoint_test.c
index c76ddcd194..af4b708d35 100644
--- a/test/core/security/secure_endpoint_test.c
+++ b/test/core/security/secure_endpoint_test.c
@@ -163,12 +163,12 @@ static void destroy_pollset(void *p) { grpc_pollset_destroy(p); }
int main(int argc, char **argv) {
grpc_test_init(argc, argv);
- grpc_iomgr_init();
+ grpc_init();
grpc_pollset_init(&g_pollset);
grpc_endpoint_tests(configs[0], &g_pollset);
test_leftover(configs[1], 1);
grpc_pollset_shutdown(&g_pollset, destroy_pollset, &g_pollset);
- grpc_iomgr_shutdown();
+ grpc_shutdown();
return 0;
}