mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-06 04:19:10 +00:00
![Kostya Serebryany](/assets/img/avatar_default.png)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@261184 91177308-0d34-0410-b5e6-96231b3b80d8
15 lines
404 B
CMake
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()
|
|
|