🔨 moved third-party code into separate folder
This commit is contained in:
parent
6e8791912f
commit
ad241a2260
160 changed files with 27 additions and 21 deletions
15
test/thirdparty/Fuzzer/test/ubsan/CMakeLists.txt
vendored
Normal file
15
test/thirdparty/Fuzzer/test/ubsan/CMakeLists.txt
vendored
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
# These tests are instrumented with ubsan in non-recovery mode.
|
||||
|
||||
set(CMAKE_CXX_FLAGS
|
||||
"${LIBFUZZER_FLAGS_BASE} -fsanitize=undefined -fno-sanitize-recover=all")
|
||||
|
||||
set(UbsanTests
|
||||
SignedIntOverflowTest
|
||||
)
|
||||
|
||||
foreach(Test ${UbsanTests})
|
||||
add_libfuzzer_test(${Test}-Ubsan SOURCES ../${Test}.cpp)
|
||||
endforeach()
|
||||
|
||||
# Propagate value into parent directory
|
||||
set(TestBinaries ${TestBinaries} PARENT_SCOPE)
|
||||
Loading…
Add table
Add a link
Reference in a new issue