wrowe 2002/12/29 11:31:08
Modified: test testdso.c
Log:
Revert the bit from rev 1.31 that Rbb objects to... continue to test
undefined/undocumented behavior.
Revision Changes Path
1.32 +3 -0 apr/test/testdso.c
Index: testdso.c
===================================================================
RCS file: /home/cvs/apr/test/testdso.c,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- testdso.c 29 Dec 2002 05:44:01 -0000 1.31
+++ testdso.c 29 Dec 2002 19:31:07 -0000 1.32
@@ -155,6 +155,9 @@
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);
}