Only tests using %clang_cl_asan were using the dynamic CRT before this. The unit tests and lit tests using %clangxx_asan were using the static CRT. Many cross-platform tests fail with the dynamic CRT, so I had to add win32-(static|dynamic)-asan lit features. Also deletes some redundant tests in TestCases/Windows that started failing with this switch. llvm-svn: 285821
19 lines
387 B
C++
19 lines
387 B
C++
// RUN: %clangxx_asan -O2 %s -o %t
|
|
// RUN: %run %t 2>&1 | FileCheck %s
|
|
|
|
// FIXME: Doesn't work with DLLs
|
|
// XFAIL: win32-dynamic-asan
|
|
|
|
const char *kAsanDefaultOptions="verbosity=1 help=1";
|
|
|
|
extern "C"
|
|
__attribute__((no_sanitize_address))
|
|
const char *__asan_default_options() {
|
|
// CHECK: Available flags for AddressSanitizer:
|
|
return kAsanDefaultOptions;
|
|
}
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|