bolt/deps/llvm-18.1.8/compiler-rt/test/sanitizer_common/TestCases/Linux/deepbind.cpp
2025-02-14 19:21:04 +01:00

15 lines
408 B
C++

// RUN: %clangxx %s -o %t && %run not %t 1 2>&1 | FileCheck %s
// UNSUPPORTED: lsan,ubsan,android
// FIXME: Implement.
// XFAIL: hwasan
#include <dlfcn.h>
#include <stdio.h>
#include <string>
int main (int argc, char *argv[]) {
// CHECK: You are trying to dlopen a <arbitrary path> shared library with RTLD_DEEPBIND flag
void *lib = dlopen("<arbitrary path>", RTLD_NOW | RTLD_DEEPBIND);
return 0;
}