Summary: When targeting MSVC: compile using clang's cl driver mode (this is needed for libfuzzer's exit_on_src_pos feature). Don't use -lstdc++ when linking, it isn't needed and causes a warning. On Windows: Fix exit_on_src_pos.test by making sure debug info isn't overwritten during compilation of second binary by using .exe extension. Reviewers: morehouse Reviewed By: morehouse Subscribers: aprantl, JDevlieghere Differential Revision: https://reviews.llvm.org/D51757 llvm-svn: 341622
12 lines
822 B
Plaintext
12 lines
822 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.
|
|
# Binaries must end in .exe or else symbolization will break on Windows because of how periods
|
|
# in expansion of %t cause the compiler to overwrite .lib and .exp files.
|
|
RUN: %cpp_compiler -O0 %S/SimpleTest.cpp -o %t-SimpleTest.exe -mllvm -use-unknown-locations=Disable
|
|
RUN: %cpp_compiler -O0 %S/ShrinkControlFlowTest.cpp -o %t-ShrinkControlFlowTest.exe
|
|
|
|
RUN: %run %t-SimpleTest.exe -exit_on_src_pos=SimpleTest.cpp:18 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
|
|
RUN: %run %t-ShrinkControlFlowTest.exe -exit_on_src_pos=Foo 2>&1 | FileCheck %s --check-prefix=EXIT_ON_SRC_POS
|
|
EXIT_ON_SRC_POS: INFO: found line matching '{{.*}}', exiting.
|