[docs] Fix build-docs.sh
[llvm-project.git] / compiler-rt / test / fuzzer / exit_on_src_pos.test
blob881d314439852961eb1a6890f92730e608a407b2
1 # Temporary use -mllvm -use-unknown-locations=Disable so that
2 # all instructions have debug info (file line numbers) attached.
3 # TODO: Find out why test fails on Darwin with -O2.
4 # Binaries must end in .exe or else symbolization will break on Windows because of how periods
5 # in expansion of %t cause the compiler to overwrite .lib and .exp files.
7 # Test does not complete on Armv7 Thumb build bot
8 UNSUPPORTED: thumb
10 RUN: %cpp_compiler -O0 %S/SimpleTest.cpp -o %t-SimpleTest.exe -mllvm -use-unknown-locations=Disable
11 RUN: %cpp_compiler -O0 %S/ShrinkControlFlowTest.cpp -o %t-ShrinkControlFlowTest.exe
13 RUN: %run %t-SimpleTest.exe  -exit_on_src_pos=SimpleTest.cpp:19 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
14 RUN: %run %t-ShrinkControlFlowTest.exe  -exit_on_src_pos=Foo 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
15 EXIT_ON_SRC_POS: INFO: found line matching '{{.*}}', exiting.