about summary refs log tree commit diff
path: root/REORG.TODO/elf/tst-tls9.c
diff options
context:
space:
mode:
Diffstat (limited to 'REORG.TODO/elf/tst-tls9.c')
-rw-r--r--REORG.TODO/elf/tst-tls9.c36
1 files changed, 36 insertions, 0 deletions
diff --git a/REORG.TODO/elf/tst-tls9.c b/REORG.TODO/elf/tst-tls9.c
new file mode 100644
index 0000000000..ee21b47c70
--- /dev/null
+++ b/REORG.TODO/elf/tst-tls9.c
@@ -0,0 +1,36 @@
+#include <dlfcn.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+#include <link.h>
+
+static int
+do_test (void)
+{
+  static const char modname1[] = "tst-tlsmod5.so";
+  static const char modname2[] = "tst-tlsmod6.so";
+  int result = 0;
+
+  void *h1 = dlopen (modname1, RTLD_LAZY);
+  if (h1 == NULL)
+    {
+      printf ("cannot open '%s': %s\n", modname1, dlerror ());
+      result = 1;
+    }
+  void *h2 = dlopen (modname2, RTLD_LAZY);
+  if (h2 == NULL)
+    {
+      printf ("cannot open '%s': %s\n", modname2, dlerror ());
+      result = 1;
+    }
+
+  if (h1 != NULL)
+    dlclose (h1);
+  if (h2 != NULL)
+    dlclose (h2);
+
+  return result;
+}
+
+
+#include <support/test-driver.c>