summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-12-29 19:31:07 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-12-29 19:31:07 +0000
commit0bd9981cfa959ef947229721a5bb1c9b1f6c43e5 (patch)
tree72403a14b9d1ebd94889f87797a7dbad4a16816a /test
parent947642d9492ac699cdfd88b2b13630e8877f028a (diff)
downloadlibapr-0bd9981cfa959ef947229721a5bb1c9b1f6c43e5.tar.gz
Revert the bit from rev 1.31 that Rbb objects to... continue to test
undefined/undocumented behavior. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64223 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r--test/testdso.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/testdso.c b/test/testdso.c
index 0daf209aa..2ed53f3e0 100644
--- a/test/testdso.c
+++ b/test/testdso.c
@@ -155,6 +155,9 @@ static void test_unload_module(CuTest *tc)
status = apr_dso_unload(h);
CuAssert(tc, apr_dso_error(h, errstr, 256), APR_SUCCESS == status);
+
+ status = apr_dso_sym(&func1, h, "print_hello");
+ CuAssertIntEquals(tc, APR_EINIT, status);
}