aboutsummaryrefslogtreecommitdiff
path: root/lib/mlibc/tests/rtdl/dladdr_local/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mlibc/tests/rtdl/dladdr_local/test.c')
-rw-r--r--lib/mlibc/tests/rtdl/dladdr_local/test.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/mlibc/tests/rtdl/dladdr_local/test.c b/lib/mlibc/tests/rtdl/dladdr_local/test.c
new file mode 100644
index 0000000..c64d259
--- /dev/null
+++ b/lib/mlibc/tests/rtdl/dladdr_local/test.c
@@ -0,0 +1,21 @@
+#include <dlfcn.h>
+#include <assert.h>
+
+#ifdef USE_HOST_LIBC
+#define LIBFOO "libnative-foo.so"
+#else
+#define LIBFOO "libfoo.so"
+#endif
+
+int main() {
+ void *foo_handle = dlopen(LIBFOO, RTLD_LOCAL | RTLD_NOW);
+ assert(foo_handle);
+
+ char *foo_global = (char *)dlsym(foo_handle, "foo_global");
+ assert(foo_global);
+
+ Dl_info info;
+ assert(dladdr((const void *)foo_global, &info) != 0);
+
+ assert(dlclose(foo_handle) == 0);
+}