elf: Make glibc.rtld.enable_secure ignore alias environment variables
[glibc.git] / elf / tst-tls15.c
blobdb2a4f4b7740e7ed4adeeb7e4fe096bf8e4e41f3
1 #include <dlfcn.h>
2 #include <stdlib.h>
3 #include <stdio.h>
5 static int
6 do_test (void)
8 void *h = dlopen ("tst-tlsmod15a.so", RTLD_NOW);
9 if (h != NULL)
11 puts ("unexpectedly succeeded to open tst-tlsmod15a.so");
12 exit (1);
15 h = dlopen ("tst-tlsmod15b.so", RTLD_NOW);
16 if (h == NULL)
18 puts ("failed to open tst-tlsmod15b.so");
19 exit (1);
22 int (*fp) (void) = (int (*) (void)) dlsym (h, "in_dso");
23 if (fp == NULL)
25 puts ("cannot find in_dso");
26 exit (1);
29 return fp ();
32 #include <support/test-driver.c>