1# These tests depend on both coverage and dfsan instrumentation. 2 3set(CMAKE_CXX_FLAGS_RELEASE 4 "${LIBFUZZER_FLAGS_BASE} -O0 -fno-sanitize=all -fsanitize=dataflow") 5 6foreach(Test ${DFSanTests}) 7 add_executable(LLVMFuzzer-${Test}-DFSan 8 ../${Test}.cpp 9 ) 10 target_link_libraries(LLVMFuzzer-${Test}-DFSan 11 LLVMFuzzer 12 ) 13endforeach() 14 15