summaryrefslogtreecommitdiff
path: root/test/testdir.c
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-08-02 21:07:04 +0000
committerJeff Trawick <trawick@apache.org>2001-08-02 21:07:04 +0000
commit3fd1ed0d91debf2d4af174ca90a661a05d659a7b (patch)
tree325e356f78a70bf88433bca6e5eb31c49a24b2be /test/testdir.c
parent9b81f33c9507c5d398f945336125be3097cdc00d (diff)
downloadapr-3fd1ed0d91debf2d4af174ca90a661a05d659a7b.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: https://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;
}