Files
clang-p2996/compiler-rt/test/sanitizer_common/TestCases/Linux/deepbind.cpp
Vitaly Buka 69e01fa1e9 [test][HWASAN] Add XFAILs for missing hwasan features
Reviewed By: thurston

Differential Revision: https://reviews.llvm.org/D149271
2023-04-26 12:55:21 -07:00

16 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;
}