summaryrefslogtreecommitdiff
path: root/test/tls/tst-tls13.c
blob: 4cb74e76bfad08c54fecd49778804ec763478fa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* 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"