2019-06-30 19:06:09 -04:00
|
|
|
project(spdlog_utests CXX)
|
|
|
|
|
2019-07-01 08:03:53 -04:00
|
|
|
include(../cmake/utils.cmake)
|
|
|
|
|
2019-06-28 10:29:52 -04:00
|
|
|
find_package(PkgConfig)
|
|
|
|
if(PkgConfig_FOUND)
|
|
|
|
pkg_check_modules(systemd libsystemd)
|
|
|
|
endif()
|
|
|
|
|
2018-02-11 14:45:56 -05:00
|
|
|
set(SPDLOG_UTESTS_SOURCES
|
2018-11-22 05:31:16 -05:00
|
|
|
test_file_helper.cpp
|
2018-11-20 05:14:21 -05:00
|
|
|
test_file_logging.cpp
|
2019-09-15 11:34:29 -04:00
|
|
|
test_daily_logger.cpp
|
2018-02-23 09:49:26 -05:00
|
|
|
test_misc.cpp
|
2018-08-14 15:33:47 -04:00
|
|
|
test_pattern_formatter.cpp
|
2018-05-22 14:59:27 -04:00
|
|
|
test_async.cpp
|
2018-02-11 14:45:56 -05:00
|
|
|
includes.h
|
2018-10-13 12:23:11 -04:00
|
|
|
test_registry.cpp
|
2018-02-11 14:45:56 -05:00
|
|
|
test_macros.cpp
|
|
|
|
utils.cpp
|
|
|
|
utils.h
|
2018-08-14 15:33:47 -04:00
|
|
|
main.cpp
|
|
|
|
test_mpmc_q.cpp
|
|
|
|
test_sink.h
|
2019-06-19 18:02:54 -04:00
|
|
|
test_fmt_helper.cpp
|
2019-06-28 01:07:15 -04:00
|
|
|
test_stdout_api.cpp
|
2019-08-27 11:06:27 -04:00
|
|
|
test_dup_filter.cpp
|
|
|
|
test_backtrace.cpp)
|
2018-02-11 14:45:56 -05:00
|
|
|
|
2019-08-19 04:31:33 -04:00
|
|
|
if(NOT SPDLOG_NO_EXCEPTIONS)
|
|
|
|
list(APPEND SPDLOG_UTESTS_SOURCES test_errors.cpp)
|
|
|
|
endif()
|
|
|
|
|
2019-06-28 10:29:52 -04:00
|
|
|
if(systemd_FOUND)
|
2019-07-07 07:09:23 -04:00
|
|
|
list(APPEND SPDLOG_UTESTS_SOURCES test_systemd.cpp)
|
2019-06-28 10:29:52 -04:00
|
|
|
endif()
|
|
|
|
|
2018-02-11 14:45:56 -05:00
|
|
|
file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/logs")
|
2018-08-14 15:33:47 -04:00
|
|
|
enable_testing()
|
2019-05-28 17:04:36 -04:00
|
|
|
|
|
|
|
# The compiled library tests
|
|
|
|
if(SPDLOG_BUILD_TESTS)
|
|
|
|
add_executable(spdlog-utests ${SPDLOG_UTESTS_SOURCES})
|
2019-06-10 11:09:36 -04:00
|
|
|
spdlog_enable_warnings(spdlog-utests)
|
2019-06-10 11:32:10 -04:00
|
|
|
target_link_libraries(spdlog-utests PRIVATE spdlog)
|
2019-06-28 10:29:52 -04:00
|
|
|
|
|
|
|
if(systemd_FOUND)
|
|
|
|
target_link_libraries(spdlog-utests PRIVATE ${systemd_LIBRARIES})
|
|
|
|
endif()
|
2019-06-10 11:09:36 -04:00
|
|
|
if(SPDLOG_SANITIZE_ADDRESS)
|
|
|
|
spdlog_enable_sanitizer(spdlog-utests)
|
|
|
|
endif()
|
2019-06-10 11:32:10 -04:00
|
|
|
add_test(NAME spdlog-utests COMMAND spdlog-utests)
|
2019-05-28 17:04:36 -04:00
|
|
|
endif()
|
|
|
|
|
|
|
|
# The header-only library version tests
|
2019-06-30 19:06:09 -04:00
|
|
|
if(SPDLOG_BUILD_TESTS_HO)
|
2019-05-28 17:04:36 -04:00
|
|
|
add_executable(spdlog-utests-ho ${SPDLOG_UTESTS_SOURCES})
|
2019-06-10 11:09:36 -04:00
|
|
|
spdlog_enable_warnings(spdlog-utests-ho)
|
2019-06-10 11:32:10 -04:00
|
|
|
target_link_libraries(spdlog-utests-ho PRIVATE spdlog::spdlog_header_only)
|
2019-06-28 10:29:52 -04:00
|
|
|
if(systemd_FOUND)
|
|
|
|
target_link_libraries(spdlog-utests-ho PRIVATE ${systemd_LIBRARIES})
|
|
|
|
endif()
|
2019-06-10 11:09:36 -04:00
|
|
|
if(SPDLOG_SANITIZE_ADDRESS)
|
|
|
|
spdlog_set_address_sanitizer(spdlog-utests-ho)
|
|
|
|
endif()
|
2019-05-28 17:04:36 -04:00
|
|
|
add_test(NAME spdlog-utests-ho COMMAND spdlog-utests-ho)
|
2019-06-10 11:32:10 -04:00
|
|
|
endif()
|