aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/end2end/fixtures/h2_full.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-11-04 13:20:49 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-11-04 13:20:49 -0700
commitb65e234f7af6df1625ccd4dec386e0fa2f573eb7 (patch)
tree07071573c03e526c16fbe3bfd487a2f3060503fb /test/core/end2end/fixtures/h2_full.c
parent31c5ee230369b758978c5e4e87911d759a7f9184 (diff)
parent4736c55e0f923b8f3b8713449500a43ab8686ae3 (diff)
Merge github.com:grpc/grpc into fuzzit
Diffstat (limited to 'test/core/end2end/fixtures/h2_full.c')
-rw-r--r--test/core/end2end/fixtures/h2_full.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/test/core/end2end/fixtures/h2_full.c b/test/core/end2end/fixtures/h2_full.c
index 182ce23a51..e87382edae 100644
--- a/test/core/end2end/fixtures/h2_full.c
+++ b/test/core/end2end/fixtures/h2_full.c
@@ -70,9 +70,7 @@ static grpc_end2end_test_fixture chttp2_create_fixture_fullstack(
}
void chttp2_init_client_fullstack(grpc_end2end_test_fixture *f,
- grpc_channel_args *client_args,
- const char *query_args) {
- GPR_ASSERT(query_args == NULL);
+ grpc_channel_args *client_args) {
fullstack_fixture_data *ffd = f->fixture_data;
f->client = grpc_insecure_channel_create(ffd->localaddr, client_args, NULL);
GPR_ASSERT(f->client);
@@ -98,7 +96,8 @@ void chttp2_tear_down_fullstack(grpc_end2end_test_fixture *f) {
/* All test configurations */
static grpc_end2end_test_config configs[] = {
- {"chttp2/fullstack", FEATURE_MASK_SUPPORTS_DELAYED_CONNECTION,
+ {"chttp2/fullstack", FEATURE_MASK_SUPPORTS_DELAYED_CONNECTION |
+ FEATURE_MASK_SUPPORTS_CLIENT_CHANNEL,
chttp2_create_fixture_fullstack, chttp2_init_client_fullstack,
chttp2_init_server_fullstack, chttp2_tear_down_fullstack},
};