summaryrefslogtreecommitdiff
path: root/regress/lib/libpthread
diff options
context:
space:
mode:
authorMarco S Hyman <marc@cvs.openbsd.org>2003-11-27 19:38:20 +0000
committerMarco S Hyman <marc@cvs.openbsd.org>2003-11-27 19:38:20 +0000
commitd8dc66c5c68ccdeb9487cc1cab950acbbb084686 (patch)
tree7c89c397d27522579f9aee448b932d7eb2aaa5de /regress/lib/libpthread
parentcf67026d1694a3c5cfebceaeaab8c4fc2cea6041 (diff)
Reduce iterations so test runs faster.
Diffstat (limited to 'regress/lib/libpthread')
-rw-r--r--regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c b/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c
index f5b9c1d591d..f890816e60d 100644
--- a/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c
+++ b/regress/lib/libpthread/pthread_cond_timedwait/pthread_cond_timedwait.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pthread_cond_timedwait.c,v 1.4 2003/07/31 21:48:05 deraadt Exp $ */
+/* $OpenBSD: pthread_cond_timedwait.c,v 1.5 2003/11/27 19:38:19 marc Exp $ */
/*
* Copyright (c) 1993, 1994, 1995, 1996 by Chris Provenzano and contributors,
* proven@mit.edu All rights reserved.
@@ -86,7 +86,7 @@ main(int argc, char *argv[])
CHECKe(gettimeofday(&begtime, NULL));
TIMEVAL_TO_TIMESPEC(&begtime, &abstime);
- for (ix = 0; ix < 5; ix++) {
+ for (ix = 0; ix < 2; ix++) {
abstime.tv_sec += 5;
/* Test a condition timeout */