summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2004-06-09 19:39:53 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2004-06-09 19:39:53 +0000
commit8cfe523c877588c16c23faf3002bda6ea108f5de (patch)
treec6d22c495de1bee49dde5e26a46bc0250aa99f14 /test
parent0a6e96053d25513cc9d798ae3ad6bea68bd05032 (diff)
downloadlibapr-8cfe523c877588c16c23faf3002bda6ea108f5de.tar.gz
Use abts_log_message to log data about which test is being run.
(This highlites a problem with abts which will be fixed shortly, namely it is too hard to use abts_log_message with a format string). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65176 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/testglobalmutex.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/testglobalmutex.c b/test/testglobalmutex.c
index 917ad92af..7248c3dda 100644
--- a/test/testglobalmutex.c
+++ b/test/testglobalmutex.c
@@ -78,6 +78,8 @@ static void test_exclusive(abts_case *tc, void *data)
apr_status_t rv;
apr_global_mutex_t *global_lock;
int x = 0;
+ abts_log_message("lock mechanism is: ");
+ abts_log_message(mutexname(mech));
rv = apr_global_mutex_create(&global_lock, LOCKNAME, mech, p);
APR_ASSERT_SUCCESS(tc, "Error creating mutex", rv);