diff options
author | Noah Eisen <ncteisen@gmail.com> | 2018-06-06 07:31:13 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-06 07:31:13 -0700 |
commit | 19c6131c4ae0be1be7f1cd9c4070337aa7d00d9b (patch) | |
tree | e23f7eeb0f88d4c7e8f5fa5b8feebe944b7a58e5 /test | |
parent | 583f39ad94c0a14a50916e86a5ccd8c3c77ae2c6 (diff) | |
parent | 8c17b1cc5f6f913bac803d1184dfb1dbd9356d68 (diff) |
Merge pull request #15650 from ncteisen/arena-test
Scale Back Concurrency of arena_test
Diffstat (limited to 'test')
-rw-r--r-- | test/core/gpr/arena_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/gpr/arena_test.cc b/test/core/gpr/arena_test.cc index 111414ea3e..3e7c906591 100644 --- a/test/core/gpr/arena_test.cc +++ b/test/core/gpr/arena_test.cc @@ -71,7 +71,7 @@ static void test(const char* name, size_t init_size, const size_t* allocs, static const size_t allocs_##name[] = {__VA_ARGS__}; \ test(#name, init_size, allocs_##name, GPR_ARRAY_SIZE(allocs_##name)) -#define CONCURRENT_TEST_THREADS 100 +#define CONCURRENT_TEST_THREADS 10 size_t concurrent_test_iterations() { if (sizeof(void*) < 8) return 1000; |