Test for unloading of modules with TLS in static block.

This commit is contained in:
Ulrich Drepper 2003-04-27 06:15:09 +00:00
parent 5ae340e35b
commit 669863e271
1 changed files with 29 additions and 0 deletions

29
elf/tst-tls13.c Normal file
View File

@ -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"