This patch does not do anything, but paves the way for future changes, where %run command will be expanded into a script performing the testing on device. Differential Revision: https://reviews.llvm.org/D46553 llvm-svn: 332144
10 lines
653 B
Plaintext
10 lines
653 B
Plaintext
# Temporary use -mllvm -use-unknown-locations=Disable so that
|
|
# all instructions have debug info (file line numbers) attached.
|
|
# TODO: Find out why test fails on Darwin with -O2.
|
|
RUN: %cpp_compiler -O0 %S/SimpleTest.cpp -o %t-SimpleTest -mllvm -use-unknown-locations=Disable
|
|
RUN: %cpp_compiler -O0 %S/ShrinkControlFlowTest.cpp -o %t-ShrinkControlFlowTest
|
|
|
|
RUN: %run %t-SimpleTest -exit_on_src_pos=SimpleTest.cpp:18 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
|
|
RUN: %run %t-ShrinkControlFlowTest -exit_on_src_pos=Foo 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
|
|
EXIT_ON_SRC_POS: INFO: found line matching '{{.*}}', exiting.
|