Files
clang-p2996/compiler-rt/test/sanitizer_common/TestCases/Linux/deepbind.cc
Vitaly Buka fd5960a653 [ubsan] Enable UBsan in sanitizer_common tests
Summary:
Failing tests just marked as UNSUPPORTED or XFAIL.
Some of them can be easily supported, but I'll do this in separate patches.

Reviewers: eugenis, alekseyshl

Subscribers: srhines, kubamracek, llvm-commits, mgorny

Differential Revision: https://reviews.llvm.org/D37630

llvm-svn: 312860
2017-09-09 06:10:58 +00:00

13 lines
369 B
C++

// RUN: %clangxx %s -o %t && %run not %t 1 2>&1 | FileCheck %s
// UNSUPPORTED: lsan,ubsan,android
#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;
}