summaryrefslogtreecommitdiff
path: root/tests/exit1.c
diff options
context:
space:
mode:
authorrpj <rpj>1999-02-21 18:07:25 +0000
committerrpj <rpj>1999-02-21 18:07:25 +0000
commit943bc9bb02212649a83ec32152299d50d34226e6 (patch)
tree55d0329607b7d2fa1044884be957518cc7a52c6e /tests/exit1.c
parent1acd28b4aec86a907846e1715bc95208d6e277e6 (diff)
1999-02-23 Ross Johnson <rpj@ise.canberra.edu.au>
* Makefile: Now actually runs the tests. * tests.h: Define our own assert macro. The Mingw32 version pops up a dialog but we want to run non-interactively. * equal1.c: use assert a little more directly so that it prints the actual call statement. * exit1.c: Modify to return 0 on success, 1 on failure.
Diffstat (limited to 'tests/exit1.c')
-rw-r--r--tests/exit1.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/exit1.c b/tests/exit1.c
index 2f31383..758852a 100644
--- a/tests/exit1.c
+++ b/tests/exit1.c
@@ -10,5 +10,8 @@ int
main(int argc, char * argv[])
{
/* A simple test firstly. */
- pthread_exit((void *) 2);
+ pthread_exit((void *) 0);
+
+ /* Not reached */
+ return 1;
}