summaryrefslogtreecommitdiff
path: root/test/tls/tst-tls13.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/tls/tst-tls13.c')
-rw-r--r--test/tls/tst-tls13.c30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/tls/tst-tls13.c b/test/tls/tst-tls13.c
deleted file mode 100644
index 4cb74e76b..000000000
--- a/test/tls/tst-tls13.c
+++ /dev/null
@@ -1,30 +0,0 @@
-/* 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 ()
-#define TIMEOUT 50
-#include "../test-skeleton.c"