llvm/lib/Fuzzer/test/uninstrumented/CMakeLists.txt
Kostya Serebryany b73d5ba466 [libFuzzer] fix the libFuzzer bot
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@261184 91177308-0d34-0410-b5e6-96231b3b80d8
2016-02-18 02:02:40 +00:00

15 lines
404 B
CMake

# These tests are not instrumented with coverage.
set(CMAKE_CXX_FLAGS_RELEASE
"${LIBFUZZER_FLAGS_BASE} -O0 -fno-sanitize=all -fno-sanitize-coverage=edge,trace-cmp,indirect-calls,8bit-counters")
foreach(Test ${UninstrumentedTests})
add_executable(LLVMFuzzer-${Test}-Uninstrumented
../${Test}.cpp
)
target_link_libraries(LLVMFuzzer-${Test}-Uninstrumented
LLVMFuzzer
)
endforeach()