Files
clang-p2996/compiler-rt/test/lsan/TestCases/default_options.cpp
Fangrui Song ea7695dcca [hwasan] Support __lsan_default_options
Reviewed By: vitalybuka

Differential Revision: https://reviews.llvm.org/D142938
2023-01-30 15:07:46 -08:00

12 lines
247 B
C++

// RUN: %clangxx_lsan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s
extern "C"
const char *__lsan_default_options() {
// CHECK: Available flags for {{Leak|Address|HWAddress}}Sanitizer:
return "verbosity=1 help=1";
}
int main() {
return 0;
}