about summary refs log tree commit diff
path: root/REORG.TODO/elf/tst-dlmopen3.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/elf/tst-dlmopen3.c')
-rw-r--r--REORG.TODO/elf/tst-dlmopen3.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/REORG.TODO/elf/tst-dlmopen3.c b/REORG.TODO/elf/tst-dlmopen3.c
new file mode 100644
index 0000000000..8167507784
--- /dev/null
+++ b/REORG.TODO/elf/tst-dlmopen3.c
@@ -0,0 +1,21 @@
+#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>