You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
431 B
20 lines
431 B
# These tests depend on both coverage and dfsan instrumentation.
|
|
|
|
set(CMAKE_CXX_FLAGS
|
|
"${LIBFUZZER_FLAGS_BASE} -fno-sanitize=all -fsanitize=dataflow")
|
|
|
|
set(DFSanTests
|
|
MemcmpTest
|
|
SimpleCmpTest
|
|
StrcmpTest
|
|
StrncmpTest
|
|
SwitchTest
|
|
)
|
|
|
|
foreach(Test ${DFSanTests})
|
|
add_libfuzzer_test(${Test}-DFSan SOURCES ../${Test}.cpp)
|
|
endforeach()
|
|
|
|
# Propagate value into parent directory
|
|
set(TestBinaries ${TestBinaries} PARENT_SCOPE)
|