summaryrefslogtreecommitdiff
path: root/test/testdso.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2002-12-29 19:31:07 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2002-12-29 19:31:07 +0000
commitbee2f2125a9b0d77530cb0cd043c74d5fb14e6e6 (patch)
tree72403a14b9d1ebd94889f87797a7dbad4a16816a /test/testdso.c
parent085a8e955bbd5f412b25427d0b74884adb350777 (diff)
downloadapr-bee2f2125a9b0d77530cb0cd043c74d5fb14e6e6.tar.gz
Revert the bit from rev 1.31 that Rbb objects to... continue to test
undefined/undocumented behavior. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@64223 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/testdso.c')
-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);
}