xref: /llvm-project/compiler-rt/test/asan/TestCases/asan_options-help.cpp (revision 673dc3d4a0b0fbb3b9b34ae2ecbfa522627fe582)
1 // RUN: %clangxx_asan -O0 %s -o %t
2 // RUN: %env_asan_opts=help=1 %run %t 2>&1 | FileCheck %s
3 
main()4 int main() {
5 }
6 
7 // CHECK: Available flags for AddressSanitizer:
8 // CHECK-DAG: handle_segv
9 // CHECK-DAG: check_initialization_order
10