aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/transport
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-06-17 17:37:40 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-06-17 17:37:40 -0700
commite2715df1abd3895963f849a8645d235d5ba7bf0f (patch)
tree6a2d14783d5b76a704a386a6f924662b0f049aa4 /test/core/transport
parentfa1433a4b6b0d6bbe817b4ab5f51f6167ecd837a (diff)
Reduce cost of some heavyweight tests
Diffstat (limited to 'test/core/transport')
-rw-r--r--test/core/transport/chttp2/hpack_table_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/transport/chttp2/hpack_table_test.c b/test/core/transport/chttp2/hpack_table_test.c
index 73e59f1536..90ee662c3d 100644
--- a/test/core/transport/chttp2/hpack_table_test.c
+++ b/test/core/transport/chttp2/hpack_table_test.c
@@ -139,7 +139,7 @@ static void test_many_additions(void) {
grpc_chttp2_hptbl_init(&tbl);
- for (i = 0; i < 1000000; i++) {
+ for (i = 0; i < 100000; i++) {
grpc_mdelem *elem;
gpr_asprintf(&key, "K:%d", i);
gpr_asprintf(&value, "VALUE:%d", i);