Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / fuzzer / exit_on_src_pos.test
blob020424e2d9fddea9dccd61972829e9c5aa0946a3
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: target=thumb{{.*}}
9 # Timeout on loongarch64 machine
10 UNSUPPORTED: target=loongarch64{{.*}}
12 RUN: %cpp_compiler -O0 %S/SimpleTest.cpp -o %t-SimpleTest.exe -mllvm -use-unknown-locations=Disable
13 RUN: %cpp_compiler -O0 %S/ShrinkControlFlowTest.cpp -o %t-ShrinkControlFlowTest.exe
15 RUN: %run %t-SimpleTest.exe  -exit_on_src_pos=SimpleTest.cpp:19 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
16 RUN: %run %t-ShrinkControlFlowTest.exe  -exit_on_src_pos=Foo 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
17 EXIT_ON_SRC_POS: INFO: found line matching '{{.*}}', exiting.