1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/cmake/Testing.cmake

36 lines
899 B
CMake
Raw Normal View History

2017-01-31 04:39:52 +08:00
################################################################################
#
# :: Testing
#
################################################################################
enable_testing()
function(auto_test subsystem module)
add_executable(test_${module}
test/${subsystem}/${module}_test.cpp)
target_link_libraries(test_${module}
${PROJECT_NAME}_static
${CHECK_LIBRARIES}
2017-01-31 04:39:52 +08:00
Qt5::Test)
add_test(
NAME test_${module}
2017-10-24 15:10:03 +08:00
COMMAND ${TEST_CROSSCOMPILING_EMULATOR} test_${module})
2017-01-31 04:39:52 +08:00
endfunction()
auto_test(core core)
auto_test(core contactid)
2017-06-03 04:33:12 +08:00
auto_test(core toxid)
auto_test(core toxstring)
2017-06-03 04:33:12 +08:00
auto_test(chatlog textformatter)
auto_test(net toxmedata)
auto_test(net bsu)
auto_test(persistence paths)
2019-05-01 15:50:19 +08:00
auto_test(persistence dbschema)
auto_test(persistence offlinemsgengine)
auto_test(model friendmessagedispatcher)
if (UNIX)
auto_test(platform posixsignalnotifier)
endif()