diff options
Diffstat (limited to 'libc/elf/tst-dlmopen3.c')
-rw-r--r-- | libc/elf/tst-dlmopen3.c | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libc/elf/tst-dlmopen3.c b/libc/elf/tst-dlmopen3.c new file mode 100644 index 000000000..26c86b2dc --- /dev/null +++ b/libc/elf/tst-dlmopen3.c @@ -0,0 +1,22 @@ +#include <dlfcn.h> +#include <stdio.h> + + +static int +do_test (void) +{ + void *h = dlmopen (LM_ID_NEWLM, "$ORIGIN/tst-dlmopen1mod.so", RTLD_LAZY); + if (h == NULL) + { + printf ("cannot get handle for %s: %s\n", + "tst-dlmopen1mod.so", dlerror ()); + return 1; + } + + /* Do not unload. */ + + return 0; +} + +#define TEST_FUNCTION do_test () +#include "../test-skeleton.c" |