summaryrefslogtreecommitdiff
path: root/test/testdir.c
diff options
context:
space:
mode:
authortrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-08-02 21:07:04 +0000
committertrawick <trawick@13f79535-47bb-0310-9956-ffa450edef68>2001-08-02 21:07:04 +0000
commit5a8a6f89d019f709165412e34b067c8c02ba3e70 (patch)
tree325e356f78a70bf88433bca6e5eb31c49a24b2be /test/testdir.c
parentc7e71158d1ab00289949a73d786977f0968b9967 (diff)
downloadlibapr-5a8a6f89d019f709165412e34b067c8c02ba3e70.tar.gz
use exit status 0 for success in testdir, testoc, and testproc
since testoc depends on occhild, build occhild when testoc is built add some trivial error code display logic to testoc git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62093 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testdir.c')
-rw-r--r--test/testdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testdir.c b/test/testdir.c
index fb6ae7a78..ee26c8ef7 100644
--- a/test/testdir.c
+++ b/test/testdir.c
@@ -129,5 +129,5 @@ int main(void)
apr_pool_destroy(pool);
printf("\nAll tests passed OK\n");
- return 1;
+ return 0;
}