brintos

brintos / llvm-project-archived public Read only

0
0
Text · 997 B · ba4fb01 Raw
19 lines · plain
1# Temporary use -mllvm -use-unknown-locations=Disable so that2# 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 periods5# in expansion of %t cause the compiler to overwrite .lib and .exp files.6 7# Test does not complete on Armv7 Thumb build bot8UNSUPPORTED: target=thumb{{.*}}9# Timeout on loongarch64 machine10UNSUPPORTED: target=loongarch64{{.*}}11UNSUPPORTED: darwin12 13RUN: %cpp_compiler -O0 %S/SimpleTest.cpp -o %t-SimpleTest.exe -mllvm -use-unknown-locations=Disable14RUN: %cpp_compiler -O0 %S/ShrinkControlFlowTest.cpp -o %t-ShrinkControlFlowTest.exe15 16RUN: %run %t-SimpleTest.exe  -exit_on_src_pos=SimpleTest.cpp:19 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS17RUN: %run %t-ShrinkControlFlowTest.exe  -exit_on_src_pos=Foo 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS18EXIT_ON_SRC_POS: INFO: found line matching '{{.*}}', exiting.19