aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-dlmopen3.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-dlmopen3.c')
-rw-r--r--elf/tst-dlmopen3.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/elf/tst-dlmopen3.c b/elf/tst-dlmopen3.c
deleted file mode 100644
index 8167507784..0000000000
--- a/elf/tst-dlmopen3.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <dlfcn.h>
-#include <stdio.h>
-
-
-static int
-do_test (void)
-{
- void *h = dlmopen (LM_ID_NEWLM, "$ORIGIN/tst-dlmopen1mod.so", RTLD_LAZY);
- if (h == NULL)
- {
- printf ("cannot get handle for %s: %s\n",
- "tst-dlmopen1mod.so", dlerror ());
- return 1;
- }
-
- /* Do not unload. */
-
- return 0;
-}
-
-#include <support/test-driver.c>