blob: 088ab04fe6a0902dd940b2b371036a11290dd30f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# These tests are instrumented with -fsanitize-coverage=inline-8bit-counters
set(CMAKE_CXX_FLAGS
"${LIBFUZZER_FLAGS_BASE} -fno-sanitize-coverage=trace-pc-guard -fsanitize-coverage=inline-8bit-counters")
set(Inline8bitCounterTests
SimpleTest
)
foreach(Test ${Inline8bitCounterTests})
add_libfuzzer_test(${Test}-Inline8bitCounters SOURCES ../${Test}.cpp)
endforeach()
|