summaryrefslogtreecommitdiff
path: root/test/testprocmutex.c
diff options
context:
space:
mode:
authorJim Jagielski <jim@apache.org>2017-04-07 12:52:54 +0000
committerJim Jagielski <jim@apache.org>2017-04-07 12:52:54 +0000
commit27939f2af12a94e2fbc8a8703fa28e6c9a833c1c (patch)
tree6533af658cf9c631d9ca83c2683ef486249a46fb /test/testprocmutex.c
parent0c796ad27879cdea842ea729fac90cc59b6db9b2 (diff)
downloadapr-27939f2af12a94e2fbc8a8703fa28e6c9a833c1c.tar.gz
No longer return NOTIMPL for macOS
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1790546 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testprocmutex.c')
-rw-r--r--test/testprocmutex.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/testprocmutex.c b/test/testprocmutex.c
index 983aa953a..24cc44189 100644
--- a/test/testprocmutex.c
+++ b/test/testprocmutex.c
@@ -131,11 +131,6 @@ static void test_exclusive(abts_case *tc, const char *lockname,
int n;
rv = apr_proc_mutex_create(&proc_lock, lockname, mech->num, p);
- if (rv == APR_ENOTIMPL) {
- /* MacOS lacks TIMED implementation, so don't fail for ENOTIMPL */
- fprintf(stderr, "method %s not implemented, ", mech->name);
- return;
- }
APR_ASSERT_SUCCESS(tc, "create the mutex", rv);
for (n = 0; n < CHILDREN; n++)