blob: 28df1c688bdf2daca64af232a17273c871802531 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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()
|