2018-02-11 14:45:56 -05:00
|
|
|
set(SPDLOG_UTESTS_SOURCES
|
2018-11-20 05:14:21 -05:00
|
|
|
test_errors.cpp
|
2018-11-22 05:31:16 -05:00
|
|
|
test_file_helper.cpp
|
2018-11-20 05:14:21 -05:00
|
|
|
test_file_logging.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
|
2018-09-27 18:30:29 -04:00
|
|
|
test_fmt_helper.cpp)
|
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-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
|
|
|
|
if(SPDLOG_BUILD_HO_TESTS)
|
|
|
|
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-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()
|