aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/http
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-09-28 10:35:53 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-09-28 10:35:53 -0700
commit08d297e375dc207e1b90285dc859907c5a36b277 (patch)
tree8560964fbdb8bd7fe43506e6cdaa4f8255b6b640 /test/core/http
parent69a1f6600534bda7d7d9f35222740e49746aed11 (diff)
Make all tests build again
Diffstat (limited to 'test/core/http')
-rw-r--r--test/core/http/httpcli_test.c4
-rw-r--r--test/core/http/httpscli_test.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/test/core/http/httpcli_test.c b/test/core/http/httpcli_test.c
index d1c6805b03..1ecfe219d4 100644
--- a/test/core/http/httpcli_test.c
+++ b/test/core/http/httpcli_test.c
@@ -89,7 +89,7 @@ static void test_get(int port) {
grpc_http_response response;
memset(&response, 0, sizeof(response));
- grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create();
+ grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create("test_get");
grpc_httpcli_get(&exec_ctx, &g_context, &g_pops, buffer_pool, &req,
n_seconds_time(15),
grpc_closure_create(on_finish, &response), &response);
@@ -129,7 +129,7 @@ static void test_post(int port) {
grpc_http_response response;
memset(&response, 0, sizeof(response));
- grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create();
+ grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create("test_post");
grpc_httpcli_post(&exec_ctx, &g_context, &g_pops, buffer_pool, &req, "hello",
5, n_seconds_time(15),
grpc_closure_create(on_finish, &response), &response);
diff --git a/test/core/http/httpscli_test.c b/test/core/http/httpscli_test.c
index 09ceec7208..51ca73fdc6 100644
--- a/test/core/http/httpscli_test.c
+++ b/test/core/http/httpscli_test.c
@@ -90,7 +90,7 @@ static void test_get(int port) {
grpc_http_response response;
memset(&response, 0, sizeof(response));
- grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create();
+ grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create("test_get");
grpc_httpcli_get(&exec_ctx, &g_context, &g_pops, buffer_pool, &req,
n_seconds_time(15),
grpc_closure_create(on_finish, &response), &response);
@@ -131,7 +131,7 @@ static void test_post(int port) {
grpc_http_response response;
memset(&response, 0, sizeof(response));
- grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create();
+ grpc_buffer_pool *buffer_pool = grpc_buffer_pool_create("test_post");
grpc_httpcli_post(&exec_ctx, &g_context, &g_pops, buffer_pool, &req, "hello",
5, n_seconds_time(15),
grpc_closure_create(on_finish, &response), &response);