summaryrefslogtreecommitdiff
path: root/test/testoc.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2007-10-06 22:44:46 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2007-10-06 22:44:46 +0000
commit49cd8829f9550095702d9a421ba453745b388d0b (patch)
tree045da0e709d3f7c13e428eb532e17ca325a57837 /test/testoc.c
parentb1be96fdcbf4456ed19ab90d48212083984c793c (diff)
downloadapr-49cd8829f9550095702d9a421ba453745b388d0b.tar.gz
Solve two sets of issues, only two possible changes, in one
batch commit; * P64 architectures require us to use ABTS_SIZE_EQUAL * We need to localize to TESTBINPATH for win32 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@582544 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testoc.c')
-rw-r--r--test/testoc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testoc.c b/test/testoc.c
index 9dbaff8c3..a5342b1f2 100644
--- a/test/testoc.c
+++ b/test/testoc.c
@@ -73,7 +73,7 @@ static void test_child_kill(abts_case *tc, void *data)
APR_NO_PIPE);
ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
- rv = apr_proc_create(&newproc, "./occhild" EXTENSION, args, NULL, procattr, p);
+ rv = apr_proc_create(&newproc, TESTBINPATH "occhild" EXTENSION, args, NULL, procattr, p);
ABTS_INT_EQUAL(tc, APR_SUCCESS, rv);
ABTS_PTR_NOTNULL(tc, newproc.in);
ABTS_PTR_EQUAL(tc, NULL, newproc.out);