Make project used forked doctest

This commit is contained in:
ado
2023-02-12 12:23:25 +01:00
parent 8dcb69aa2c
commit 04edf1e532
3 changed files with 14 additions and 12 deletions

View File

@@ -4,11 +4,6 @@ project(ssp_tests CXX)
# ---- Dependencies ----
set(SSP_INCLUDE_WITHOUT_SYSTEM YES
CACHE INTERNAL
"Turn the warning guard off to have errors appear in test builds"
)
include(FetchContent)
fetchcontent_declare(ssp SOURCE_DIR "${PROJECT_SOURCE_DIR}/..")
fetchcontent_makeavailable(ssp)
@@ -17,9 +12,16 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang")
target_compile_options(ssp INTERFACE -Wall -Wextra)
endif()
find_package(doctest 2.4.4 CONFIG REQUIRED)
# for doctest_discover_tests
include(doctest)
include(FetchContent)
fetchcontent_declare(
DOCTEST
GIT_REPOSITORY https://github.com/red0124/doctest
GIT_TAG origin/master
GIT_SHALLOW TRUE
)
fetchcontent_makeavailable(DOCTEST)
set(DOCTEST "${FETCHCONTENT_BASE_DIR}/doctest-src")
# ---- Test ----
@@ -35,5 +37,5 @@ foreach(name IN ITEMS test_splitter test_parser test_converter test_extractions)
"${name}"
PRIVATE DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN CMAKE_GITHUB_CI
)
doctest_discover_tests("${name}")
add_test(NAME "${name}" COMMAND "${name}")
endforeach()