Skip to content
Snippets Groups Projects
Commit c7ab6dba authored by Craig Tiller's avatar Craig Tiller
Browse files

Add a byte to avert a crash (which should be investigated sometime)

parent 52f23121
No related branches found
No related tags found
No related merge requests found
...@@ -277,6 +277,7 @@ static void multiple_shutdown_test(grpc_endpoint_test_config config) { ...@@ -277,6 +277,7 @@ static void multiple_shutdown_test(grpc_endpoint_test_config config) {
grpc_closure_create(inc_on_failure, &fail_count)); grpc_closure_create(inc_on_failure, &fail_count));
grpc_exec_ctx_flush(&exec_ctx); grpc_exec_ctx_flush(&exec_ctx);
GPR_ASSERT(fail_count == 2); GPR_ASSERT(fail_count == 2);
gpr_slice_buffer_add(&slice_buffer, gpr_slice_from_copied_string("a"));
grpc_endpoint_write(&exec_ctx, f.client_ep, &slice_buffer, grpc_endpoint_write(&exec_ctx, f.client_ep, &slice_buffer,
grpc_closure_create(inc_on_failure, &fail_count)); grpc_closure_create(inc_on_failure, &fail_count));
grpc_exec_ctx_flush(&exec_ctx); grpc_exec_ctx_flush(&exec_ctx);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment