aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/support
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/support
parentfa1433a4b6b0d6bbe817b4ab5f51f6167ecd837a (diff)
Reduce cost of some heavyweight tests
Diffstat (limited to 'test/core/support')
-rw-r--r--test/core/support/tls_test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/support/tls_test.c b/test/core/support/tls_test.c
index 7b732ee10e..2acc302ef2 100644
--- a/test/core/support/tls_test.c
+++ b/test/core/support/tls_test.c
@@ -50,7 +50,7 @@ static void thd_body(void *arg) {
GPR_ASSERT(gpr_tls_get(&test_var) == 0);
- for (i = 0; i < 10000000; i++) {
+ for (i = 0; i < 100000; i++) {
gpr_tls_set(&test_var, i);
GPR_ASSERT(gpr_tls_get(&test_var) == i);
}