Skip to content
Snippets Groups Projects
Commit cc43d693 authored by Sree Kuchibhotla's avatar Sree Kuchibhotla
Browse files

Reduce the number of threads so that this test works on x86 systems

parent f9b26d94
No related branches found
No related tags found
No related merge requests found
......@@ -79,9 +79,9 @@ static void test_options(void) {
static void test(void) {
int i;
gpr_thd_id thd;
gpr_thd_id thds[1000];
gpr_thd_id thds[300];
struct test t;
int n = 1000;
int n = 300;
gpr_thd_options options = gpr_thd_options_default();
gpr_mu_init(&t.mu);
gpr_cv_init(&t.done_cv);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment