diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-11-30 00:55:14 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-11-30 00:55:14 +0000 |
commit | 62d54d785036b4248838929fb8486fda48223415 (patch) | |
tree | f181f8b2d8b3bd8fe9aa44f20490713c1e0b16e4 /lib/libc_r | |
parent | 3ffb0f8ccf238e7c1e66434bc99816c095723464 (diff) |
make test a little bit more stressful
Diffstat (limited to 'lib/libc_r')
-rw-r--r-- | lib/libc_r/TEST/test_switch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc_r/TEST/test_switch.c b/lib/libc_r/TEST/test_switch.c index 311f00df362..40e04ebfd50 100644 --- a/lib/libc_r/TEST/test_switch.c +++ b/lib/libc_r/TEST/test_switch.c @@ -46,7 +46,7 @@ main(argc, argv) char **argv; { pthread_t thread; - int count = 2; + int count = 4; int debug = 0; int eof = 0; long i; @@ -84,7 +84,7 @@ main(argc, argv) (void*)(buf+i))); /* give all threads a chance to run */ - sleep (6); + sleep (4); for (i = 0; i < count; i++) ASSERT(x[i]); /* make sure each thread ran */ |