Fix completion_queue_test

pull/3204/head
Craig Tiller 10 years ago
parent fc3c0c45a0
commit 03ab064fb7
  1. 4
      test/core/surface/completion_queue_test.c

@ -325,7 +325,7 @@ static void test_threading(int producers, int consumers) {
int main(int argc, char **argv) { int main(int argc, char **argv) {
grpc_test_init(argc, argv); grpc_test_init(argc, argv);
grpc_iomgr_init(); grpc_init();
test_no_op(); test_no_op();
test_wait_empty(); test_wait_empty();
test_shutdown_then_next_polling(); test_shutdown_then_next_polling();
@ -336,6 +336,6 @@ int main(int argc, char **argv) {
test_threading(1, 10); test_threading(1, 10);
test_threading(10, 1); test_threading(10, 1);
test_threading(10, 10); test_threading(10, 10);
grpc_iomgr_shutdown(); grpc_shutdown();
return 0; return 0;
} }

Loading…
Cancel
Save