diff options
Diffstat (limited to 'elf/tst-tls13.c')
-rw-r--r-- | elf/tst-tls13.c | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/elf/tst-tls13.c b/elf/tst-tls13.c deleted file mode 100644 index b1d303310f..0000000000 --- a/elf/tst-tls13.c +++ /dev/null @@ -1,28 +0,0 @@ -/* Check unloading modules with data in static TLS block. */ -#include <dlfcn.h> -#include <stdio.h> -#include <stdlib.h> -#include <unistd.h> - - -static int -do_test (void) -{ - for (int i = 0; i < 1000;) - { - printf ("round %d\n",++i); - - void *h = dlopen ("$ORIGIN/tst-tlsmod13a.so", RTLD_LAZY); - if (h == NULL) - { - printf ("cannot load: %s\n", dlerror ()); - exit (1); - } - - dlclose (h); - } - - return 0; -} - -#include <support/test-driver.c> |