2.9
[glibc/nacl-glibc.git] / dlfcn / bug-dlsym1.c
blob3bbf6a2f02695286533c141262e2a180cb38d6f9
1 /* Test case for bug in dlsym accessing dependency objects' symbols. */
3 #include <stdlib.h>
4 #include <stdio.h>
5 #include <unistd.h>
6 #include <dlfcn.h>
8 int main(void)
10 void *handle;
11 char *c;
13 /* open lib1.so, which has the unresolved test symbol and a DT_NEEDED
14 on lib2.so, which provides the symbol */
15 if ((handle = dlopen("bug-dlsym1-lib1.so", RTLD_NOW)) == NULL) {
16 printf("dlopen(\"bug-dlsym1-lib1.so\"): %s\n", dlerror());
17 abort();
20 if ((c = dlsym(handle, "dlopen_test_variable")) == NULL) {
21 printf("dlsym(handle, \"dlopen_test_variable\"): %s\n", dlerror());
22 abort();
25 (void) dlclose(handle);
27 return 0;