aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/surface
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-09-22 12:50:03 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-09-22 12:50:03 -0700
commitb8b1a462e5cc2d629be43feed1e8960f40867d6b (patch)
treefc28c2a279ca341a0688d79c75a37983ff9bbff2 /test/core/surface
parenta82950e68318a6aab6fe894fa39f7fa616c4647b (diff)
Finish cleanup
Diffstat (limited to 'test/core/surface')
-rw-r--r--test/core/surface/completion_queue_test.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/test/core/surface/completion_queue_test.c b/test/core/surface/completion_queue_test.c
index 3209bc5bdf..e3fc789788 100644
--- a/test/core/surface/completion_queue_test.c
+++ b/test/core/surface/completion_queue_test.c
@@ -99,7 +99,7 @@ static void test_cq_end_op(void) {
GPR_ASSERT(ev.success);
shutdown_and_destroy(cc);
- GPR_ASSERT(grpc_closure_list_empty(closure_list));
+ grpc_exec_ctx_finish(&exec_ctx);
}
static void test_shutdown_then_next_polling(void) {
@@ -172,7 +172,7 @@ static void test_pluck(void) {
}
shutdown_and_destroy(cc);
- GPR_ASSERT(grpc_closure_list_empty(closure_list));
+ grpc_exec_ctx_finish(&exec_ctx);
}
#define TEST_THREAD_EVENTS 10000
@@ -217,15 +217,16 @@ static void producer_thread(void *arg) {
gpr_log(GPR_INFO, "producer %d phase 2", opt->id);
for (i = 0; i < TEST_THREAD_EVENTS; i++) {
- grpc_cq_end_op(opt->cc, (void *)(gpr_intptr)1, 1, free_completion, NULL,
- gpr_malloc(sizeof(&exec_ctx, grpc_cq_completion)));
+ grpc_cq_end_op(&exec_ctx, opt->cc, (void *)(gpr_intptr)1, 1,
+ free_completion, NULL,
+ gpr_malloc(sizeof(grpc_cq_completion)));
opt->events_triggered++;
grpc_exec_ctx_finish(&exec_ctx);
}
gpr_log(GPR_INFO, "producer %d phase 2 done", opt->id);
gpr_event_set(&opt->on_finished, (void *)(gpr_intptr)1);
- GPR_ASSERT(grpc_closure_list_empty(closure_list));
+ grpc_exec_ctx_finish(&exec_ctx);
}
static void consumer_thread(void *arg) {