blob: 443ba3716f665e753df5f7fe2da517e6681440b0 [file] [log] [blame]
# These tests are not instrumented with coverage.
set(CMAKE_CXX_FLAGS_RELEASE
"${LIBFUZZER_FLAGS_BASE} -O0 -fno-sanitize=all")
foreach(Test ${UninstrumentedTests})
add_executable(LLVMFuzzer-${Test}-Uninstrumented
../${Test}.cpp
)
target_link_libraries(LLVMFuzzer-${Test}-Uninstrumented
LLVMFuzzer
)
endforeach()