@@ -19,21 +19,21 @@ target_compile_definitions(stringparsingcheck PRIVATE NOMINMAX)
19
19
20
20
# All remaining tests link with simdjson proper
21
21
link_libraries (simdjson)
22
- add_cpp_test(random_string_number_tests LABELS dom acceptance per_implementation no_mingw )
22
+ add_cpp_test(random_string_number_tests LABELS dom acceptance per_implementation)
23
23
add_cpp_test(basictests LABELS dom acceptance per_implementation)
24
- add_cpp_test(document_stream_tests LABELS dom acceptance per_implementation no_mingw )
25
- add_cpp_test(document_tests LABELS dom acceptance per_implementation no_mingw )
24
+ add_cpp_test(document_stream_tests LABELS dom acceptance per_implementation)
25
+ add_cpp_test(document_tests LABELS dom acceptance per_implementation)
26
26
add_cpp_test(errortests LABELS dom acceptance per_implementation)
27
- add_cpp_test(extracting_values_example LABELS dom acceptance per_implementation no_mingw )
27
+ add_cpp_test(extracting_values_example LABELS dom acceptance per_implementation)
28
28
add_cpp_test(integer_tests LABELS dom acceptance per_implementation)
29
29
add_cpp_test(jsoncheck LABELS dom acceptance per_implementation)
30
- add_cpp_test(minefieldcheck LABELS dom acceptance per_implementation no_mingw )
30
+ add_cpp_test(minefieldcheck LABELS dom acceptance per_implementation)
31
31
add_cpp_test(parse_many_test LABELS dom acceptance per_implementation)
32
32
add_cpp_test(pointercheck LABELS dom acceptance per_implementation) # https://tools.ietf.org/html/rfc6901
33
- add_cpp_test(unicode_tests LABELS dom acceptance per_implementation no_mingw )
33
+ add_cpp_test(unicode_tests LABELS dom acceptance per_implementation)
34
34
35
- add_cpp_test(minify_tests LABELS other acceptance per_implementation no_mingw )
36
- add_cpp_test(padded_string_tests LABELS other acceptance no_mingw )
35
+ add_cpp_test(minify_tests LABELS other acceptance per_implementation)
36
+ add_cpp_test(padded_string_tests LABELS other acceptance )
37
37
38
38
find_program (BASH bash)
39
39
@@ -78,7 +78,7 @@ if (BASH AND (NOT WIN32) AND SIMDJSON_BASH AND (TARGET json2json)) # The scripts
78
78
add_cpp_test(checkimplementation LABELS other per_implementation)
79
79
80
80
add_test (NAME json2json COMMAND $<TARGET_FILE:json2json> ${EXAMPLE_JSON} )
81
- set_property (TEST json2json APPEND PROPERTY LABELS acceptance per_implementation no_mingw )
81
+ set_property (TEST json2json APPEND PROPERTY LABELS acceptance per_implementation)
82
82
83
83
#
84
84
# SIMDJSON_FORCE_IMPLEMENTATION tests: run json2json with SIMDJSON
@@ -109,18 +109,18 @@ endif()
109
109
# Don't add the tests if we're on VS2017 or older; they don't succeed.
110
110
if (NOT (MSVC AND MSVC_VERSION LESS 1920))
111
111
if (SIMDJSON_EXCEPTIONS)
112
- add_cpp_test(readme_examples COMPILE_ONLY LABELS acceptance no_mingw )
113
- add_cpp_test(readme_examples11 COMPILE_ONLY LABELS acceptance no_mingw SOURCES readme_examples.cpp)
112
+ add_cpp_test(readme_examples COMPILE_ONLY LABELS acceptance)
113
+ add_cpp_test(readme_examples11 COMPILE_ONLY LABELS acceptance SOURCES readme_examples.cpp)
114
114
set_target_properties (readme_examples11 PROPERTIES CXX_STANDARD 11 CXX_STANDARD_REQUIRED ON CXX_EXTENSIONS OFF )
115
115
endif ()
116
116
117
- add_cpp_test(readme_examples_noexceptions COMPILE_ONLY LABELS acceptance no_mingw )
117
+ add_cpp_test(readme_examples_noexceptions COMPILE_ONLY LABELS acceptance)
118
118
119
- add_cpp_test(readme_examples_noexceptions11 COMPILE_ONLY LABELS acceptance no_mingw SOURCES readme_examples_noexceptions.cpp)
119
+ add_cpp_test(readme_examples_noexceptions11 COMPILE_ONLY LABELS acceptance SOURCES readme_examples_noexceptions.cpp)
120
120
set_target_properties (readme_examples_noexceptions11 PROPERTIES CXX_STANDARD 11 CXX_STANDARD_REQUIRED ON CXX_EXTENSIONS OFF )
121
121
122
122
# Compile tests that *should fail*
123
- add_cpp_test(readme_examples_will_fail_with_exceptions_off WILL_FAIL COMPILE_ONLY LABELS acceptance no_mingw SOURCES readme_examples.cpp)
123
+ add_cpp_test(readme_examples_will_fail_with_exceptions_off WILL_FAIL COMPILE_ONLY LABELS acceptance SOURCES readme_examples.cpp)
124
124
target_compile_definitions (readme_examples_will_fail_with_exceptions_off PRIVATE SIMDJSON_EXCEPTIONS=0)
125
125
endif ()
126
126
0 commit comments