mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
3399e1fd73
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233745 91177308-0d34-0410-b5e6-96231b3b80d8
74 lines
1.6 KiB
CMake
74 lines
1.6 KiB
CMake
# Build all these tests with -O0, otherwise optimizations may merge some
|
|
# basic blocks and we'll fail to discover the targets.
|
|
# Also enable the coverage instrumentation back (it is disabled
|
|
# for the Fuzzer lib)
|
|
set(CMAKE_CXX_FLAGS_RELEASE "${LIBFUZZER_FLAGS_BASE} -O0 -fsanitize-coverage=4")
|
|
|
|
set(Tests
|
|
CounterTest
|
|
CxxTokensTest
|
|
FourIndependentBranchesTest
|
|
FullCoverageSetTest
|
|
InfiniteTest
|
|
NullDerefTest
|
|
SimpleTest
|
|
TimeoutTest
|
|
)
|
|
|
|
set(DFSanTests
|
|
DFSanSimpleCmpTest
|
|
)
|
|
|
|
set(TestBinaries)
|
|
|
|
foreach(Test ${Tests})
|
|
add_executable(LLVMFuzzer-${Test}
|
|
${Test}.cpp
|
|
)
|
|
target_link_libraries(LLVMFuzzer-${Test}
|
|
LLVMFuzzer
|
|
)
|
|
set(TestBinaries ${TestBinaries} LLVMFuzzer-${Test})
|
|
endforeach()
|
|
|
|
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/lit.site.cfg.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/lit.site.cfg
|
|
)
|
|
|
|
configure_lit_site_cfg(
|
|
${CMAKE_CURRENT_SOURCE_DIR}/unit/lit.site.cfg.in
|
|
${CMAKE_CURRENT_BINARY_DIR}/unit/lit.site.cfg
|
|
)
|
|
|
|
include_directories(..)
|
|
include_directories(${LLVM_MAIN_SRC_DIR}/utils/unittest/googletest/include)
|
|
|
|
add_executable(LLVMFuzzer-Unittest
|
|
FuzzerUnittest.cpp
|
|
$<TARGET_OBJECTS:LLVMFuzzerNoMain>
|
|
)
|
|
|
|
target_link_libraries(LLVMFuzzer-Unittest
|
|
gtest
|
|
gtest_main
|
|
)
|
|
|
|
set(TestBinaries ${TestBinaries} LLVMFuzzer-Unittest)
|
|
|
|
add_subdirectory(dfsan)
|
|
|
|
foreach(Test ${DFSanTests})
|
|
set(TestBinaries ${TestBinaries} LLVMFuzzer-${Test})
|
|
endforeach()
|
|
|
|
|
|
set_target_properties(${TestBinaries}
|
|
PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
|
|
)
|
|
|
|
add_lit_testsuite(check-fuzzer "Running Fuzzer tests"
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
DEPENDS ${TestBinaries} FileCheck not
|
|
)
|