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, 0 insertions, 21 deletions
diff --git a/lib/mlibc/tests/rtdl/dladdr_local/test.c b/lib/mlibc/tests/rtdl/dladdr_local/test.c
deleted file mode 100644
index c64d259..0000000
--- a/lib/mlibc/tests/rtdl/dladdr_local/test.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#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);
-}