63 lines
1.3 KiB
CMake
63 lines
1.3 KiB
CMake
enable_testing()
|
|
|
|
include(${TF_3RD_PARTY_DIR}/doctest/doctest.cmake)
|
|
|
|
list(APPEND TF_UNITTESTS
|
|
test_utility
|
|
test_queue
|
|
test_work_stealing
|
|
#test_serializer
|
|
#test_priorities
|
|
test_basics
|
|
test_asyncs
|
|
test_dependent_asyncs
|
|
test_subflows
|
|
test_control_flow
|
|
test_semaphores
|
|
test_movable
|
|
test_cancellation
|
|
test_for_each
|
|
test_reduce
|
|
test_transform
|
|
test_sort
|
|
test_scan
|
|
test_find
|
|
test_compositions
|
|
test_traversals
|
|
test_pipelines
|
|
test_scalable_pipelines
|
|
test_deferred_pipelines
|
|
test_deferred_scalable_pipelines
|
|
test_runtimes
|
|
test_data_pipelines
|
|
)
|
|
|
|
string(FIND '${CMAKE_CXX_FLAGS}' "-fsanitize" sanitize)
|
|
#message("sanitize='${sanitize}'")
|
|
|
|
if(${sanitize} EQUAL -1)
|
|
message(STATUS "Add test_exception to unit tests")
|
|
list(APPEND TF_UNITTESTS test_exceptions)
|
|
endif()
|
|
|
|
|
|
foreach(unittest IN LISTS TF_UNITTESTS)
|
|
add_executable(${unittest} ${unittest}.cpp)
|
|
target_link_libraries(${unittest} ${PROJECT_NAME} ${ATOMIC_LIBRARY} tf::default_settings)
|
|
target_include_directories(${unittest} PRIVATE ${TF_3RD_PARTY_DIR}/doctest)
|
|
doctest_discover_tests(${unittest})
|
|
endforeach()
|
|
|
|
# include CUDA tests
|
|
if(TF_BUILD_CUDA)
|
|
add_subdirectory(${TF_UTEST_DIR}/cuda)
|
|
endif()
|
|
|
|
# include SYCL tests
|
|
if(TF_BUILD_SYCL)
|
|
add_subdirectory(${TF_UTEST_DIR}/sycl)
|
|
endif()
|
|
|
|
|
|
|
|
|