diff options
author | David Garcia Quintas <dgq@google.com> | 2015-06-15 13:52:13 -0700 |
---|---|---|
committer | David Garcia Quintas <dgq@google.com> | 2015-06-15 13:52:13 -0700 |
commit | c367a097596678ba8af251f016e840ddd5e82515 (patch) | |
tree | 64be183e07e1725f1ede9447ebecc31e8de3a315 /test | |
parent | ba710e5579575833566f362bf89b4955b3469b46 (diff) |
Added missing changes to fix bad_hostname C test
Diffstat (limited to 'test')
-rw-r--r-- | test/core/end2end/tests/bad_hostname.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/core/end2end/tests/bad_hostname.c b/test/core/end2end/tests/bad_hostname.c index 0220f34534..396c1f20f8 100644 --- a/test/core/end2end/tests/bad_hostname.c +++ b/test/core/end2end/tests/bad_hostname.c @@ -125,17 +125,21 @@ static void simple_request_body(grpc_end2end_test_fixture f) { op = ops; op->op = GRPC_OP_SEND_INITIAL_METADATA; op->data.send_initial_metadata.count = 0; + op->flags = 0; op++; op->op = GRPC_OP_SEND_CLOSE_FROM_CLIENT; + op->flags = 0; op++; op->op = GRPC_OP_RECV_INITIAL_METADATA; op->data.recv_initial_metadata = &initial_metadata_recv; + op->flags = 0; op++; op->op = GRPC_OP_RECV_STATUS_ON_CLIENT; op->data.recv_status_on_client.trailing_metadata = &trailing_metadata_recv; op->data.recv_status_on_client.status = &status; op->data.recv_status_on_client.status_details = &details; op->data.recv_status_on_client.status_details_capacity = &details_capacity; + op->flags = 0; op++; GPR_ASSERT(GRPC_CALL_OK == grpc_call_start_batch(c, ops, op - ops, tag(1))); |