about summary refs log tree commit diff
path: root/elf/tst-tls13.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2003-04-27 06:15:09 +0000
committerUlrich Drepper <drepper@redhat.com>2003-04-27 06:15:09 +0000
commit669863e27194ac7ddeffa2843d96949a1e082ece (patch)
tree25fecffacede43f5982dafb9f57ab094749825d1 /elf/tst-tls13.c
parent5ae340e35bfb08dd57e83dccfc45068865a7cd0d (diff)
downloadglibc-669863e27194ac7ddeffa2843d96949a1e082ece.tar.gz
glibc-669863e27194ac7ddeffa2843d96949a1e082ece.tar.xz
glibc-669863e27194ac7ddeffa2843d96949a1e082ece.zip
Test for unloading of modules with TLS in static block.
Diffstat (limited to 'elf/tst-tls13.c')
-rw-r--r--elf/tst-tls13.c29
1 files changed, 29 insertions, 0 deletions
diff --git a/elf/tst-tls13.c b/elf/tst-tls13.c
new file mode 100644
index 0000000000..31b9cfbba3
--- /dev/null
+++ b/elf/tst-tls13.c
@@ -0,0 +1,29 @@
+/* Check unloading modules with data in static TLS block.  */
+#include <dlfcn.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+
+static int
+do_test (void)
+{
+  int i;
+  for (i = 0; i < 1000;)
+    {
+      printf ("round %d\n",++i);
+
+      void *h = dlopen ("tst-tlsmod13a.so", RTLD_LAZY);
+      if (h == NULL)
+	{
+	  printf ("cannot load: %s\n", dlerror ());
+	  exit (1);
+	}
+
+      dlclose (h);
+    }
+
+  return 0;
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"