blob: 34f2881228423dc9d6c045526b099c98516e16dc [file] [log] [blame]
Evgenii Stepanov68650822015-06-10 13:38:39 -07001#include <dlfcn.h>
2extern "C" void *dlopen_b() {
3 // This is not supposed to succeed. Even though this library has DT_RUNPATH
4 // for libtest_dt_runpath_x.so, it is not taked into account for dlopen.
5 void *handle = dlopen("libtest_dt_runpath_x.so", RTLD_NOW);
6 return handle;
7}