Split parser tests part 2 into additional segments

This commit is contained in:
ado
2024-02-19 00:04:09 +01:00
parent 11d57bd073
commit e4fba8a918
9 changed files with 58 additions and 23 deletions

View File

@@ -15,7 +15,7 @@ endif()
if (MSVC)
add_compile_options(/bigobj)
elseif (MINGW)
add_compile_options(-Wa,-mbig-obj -mcmodel=medium)
add_compile_options(-Wa,-mbig-obj)
endif ()
include(FetchContent)
@@ -35,8 +35,8 @@ enable_testing()
foreach(name IN ITEMS test_splitter test_parser1_1 test_parser1_2
test_parser1_3 test_parser1_4 test_converter
test_extractions test_parser2_1 test_parser2_2
test_parser2_3 test_parser2_4
test_extractions_without_fast_float)
test_parser2_3 test_parser2_4 test_parser2_5
test_parser2_6 test_extractions_without_fast_float)
add_executable("${name}" "${name}.cpp")
target_link_libraries("${name}" PRIVATE ssp::ssp fast_float
doctest::doctest)