소스 검색

Make metadata_test test_things_stick_around use fewer strings

This test is quadratic in nstr and times out under tsan.
David Klempner 10 년 전
부모
커밋
a4ac78c8ce
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      test/core/transport/metadata_test.c

+ 1 - 1
test/core/transport/metadata_test.c

@@ -178,7 +178,7 @@ static void test_things_stick_around(void) {
   grpc_mdctx *ctx;
   int i, j;
   char *buffer;
-  int nstrs = 10000;
+  int nstrs = 1000;
   grpc_mdstr **strs = gpr_malloc(sizeof(grpc_mdstr *) * nstrs);
   int *shuf = gpr_malloc(sizeof(int) * nstrs);
   grpc_mdstr *test;