diff options
author | Roland McGrath <roland@gnu.org> | 2002-10-22 06:22:38 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-10-22 06:22:38 +0000 |
commit | 6ef518c323c2bcdd8e633da3c0cd1f525f63c7d8 (patch) | |
tree | fa426cf849ca27e6735320777db6f17679fce4c0 /elf/tst-tls9.c | |
parent | 82bbb29edd37e2f74a50afb1895dcb3014a7b63e (diff) | |
download | glibc-6ef518c323c2bcdd8e633da3c0cd1f525f63c7d8.tar.gz glibc-6ef518c323c2bcdd8e633da3c0cd1f525f63c7d8.tar.xz glibc-6ef518c323c2bcdd8e633da3c0cd1f525f63c7d8.zip |
2002-10-21 Roland McGrath <roland@redhat.com>
* elf/tst-tls9.c, elf/tst-tls9-static.c: New files. * elf/tst-tlsmod5.c, elf/tst-tlsmod6.c: New files. * elf/Makefile (tests): Add tst-tls9. (tests-static): Add tst-tls9-static. (tst-tls9-static-ENV): New variable. ($(objpfx)tst-tls9-static, $(objpfx)tst-tls9-static.out): New targets.
Diffstat (limited to 'elf/tst-tls9.c')
-rw-r--r-- | elf/tst-tls9.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/elf/tst-tls9.c b/elf/tst-tls9.c new file mode 100644 index 0000000000..cd958e47fb --- /dev/null +++ b/elf/tst-tls9.c @@ -0,0 +1,43 @@ +#include <dlfcn.h> +#include <stdio.h> +#include <stdlib.h> + +#include <link.h> +#include <tls.h> + + +#define TEST_FUNCTION do_test () +static int +do_test (void) +{ +#ifdef USE_TLS + static const char modname1[] = "tst-tlsmod5.so"; + static const char modname2[] = "tst-tlsmod6.so"; + int result = 0; + + void *h1 = dlopen (modname1, RTLD_LAZY); + if (h1 == NULL) + { + printf ("cannot open '%s': %s\n", modname1, dlerror ()); + result = 1; + } + void *h2 = dlopen (modname2, RTLD_LAZY); + if (h2 == NULL) + { + printf ("cannot open '%s': %s\n", modname2, dlerror ()); + result = 1; + } + + if (h1 != NULL) + dlclose (h1); + if (h2 != NULL) + dlclose (h2); + + return result; +#else + return 0; +#endif +} + + +#include "../test-skeleton.c" |