summaryrefslogtreecommitdiff
path: root/test/testglobalmutex.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/testglobalmutex.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/testglobalmutex.c')
-rw-r--r--test/testglobalmutex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testglobalmutex.c b/test/testglobalmutex.c
index a10742d92..d6b716c09 100644
--- a/test/testglobalmutex.c
+++ b/test/testglobalmutex.c
@@ -41,7 +41,7 @@ static void launch_child(abts_case *tc, apr_lockmech_e mech,
args[0] = "globalmutexchild" EXTENSION;
args[1] = (const char*)apr_itoa(p, (int)mech);
args[2] = NULL;
- rv = apr_proc_create(proc, "./globalmutexchild" EXTENSION, args, NULL,
+ rv = apr_proc_create(proc, TESTBINPATH "globalmutexchild" EXTENSION, args, NULL,
procattr, p);
APR_ASSERT_SUCCESS(tc, "Couldn't launch program", rv);
}