summaryrefslogtreecommitdiff
path: root/tests/exit2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/exit2.c')
-rw-r--r--tests/exit2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/exit2.c b/tests/exit2.c
index 786e4aa..684305b 100644
--- a/tests/exit2.c
+++ b/tests/exit2.c
@@ -14,7 +14,7 @@ func(void * arg)
pthread_exit(arg);
/* Never reached. */
- exit(1);
+ assert(0);
}
int
@@ -24,7 +24,7 @@ main(int argc, char * argv[])
assert(pthread_create(&t, NULL, func, (void *) NULL) == 0);
- Sleep(2000);
+ Sleep(1000);
return 0;
}