mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
9843ef6423
llvm-svn: 236909
15 lines
345 B
CMake
15 lines
345 B
CMake
# These tests depend on both coverage and dfsan instrumentation.
|
|
|
|
set(CMAKE_CXX_FLAGS_RELEASE
|
|
"${LIBFUZZER_FLAGS_BASE} -O0 -fno-sanitize=all -fsanitize=dataflow")
|
|
|
|
foreach(Test ${DFSanTests})
|
|
add_executable(LLVMFuzzer-${Test}-DFSan
|
|
../${Test}.cpp
|
|
)
|
|
target_link_libraries(LLVMFuzzer-${Test}-DFSan
|
|
LLVMFuzzer
|
|
)
|
|
endforeach()
|
|
|