aboutsummaryrefslogtreecommitdiff
path: root/elf/tst-relsort1.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/tst-relsort1.c')
-rw-r--r--elf/tst-relsort1.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/elf/tst-relsort1.c b/elf/tst-relsort1.c
deleted file mode 100644
index 775c968e1f..0000000000
--- a/elf/tst-relsort1.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <dlfcn.h>
-#include <stdio.h>
-
-
-static int
-do_test (void)
-{
- const char lib[] = "$ORIGIN/tst-relsort1mod1.so";
- void *h = dlopen (lib, RTLD_NOW);
- if (h == NULL)
- {
- puts (dlerror ());
- return 1;
- }
- return 0;
-}
-
-#include <support/test-driver.c>