File tree 7 files changed +23
-9
lines changed
cmake_target_include_directories
7 files changed +23
-9
lines changed Original file line number Diff line number Diff line change @@ -6,17 +6,25 @@ target_link_libraries(abi_config_default PRIVATE abi_compat_main)
6
6
add_test (
7
7
NAME test -abi_config_default
8
8
COMMAND abi_config_default ${DOCTEST_TEST_FILTER} )
9
+ set_tests_properties (test -abi_config_default PROPERTIES
10
+ LABELS "offline"
11
+ )
9
12
10
13
# test no version namespace
11
14
add_executable (abi_config_noversion noversion.cpp)
12
15
target_link_libraries (abi_config_noversion PRIVATE abi_compat_main)
13
16
add_test (
14
17
NAME test -abi_config_noversion
15
18
COMMAND abi_config_noversion ${DOCTEST_TEST_FILTER} )
16
-
19
+ set_tests_properties (test -abi_config_noversion PROPERTIES
20
+ LABELS "offline"
21
+ )
17
22
# test custom namespace
18
23
add_executable (abi_config_custom custom.cpp)
19
24
target_link_libraries (abi_config_custom PRIVATE abi_compat_main)
20
25
add_test (
21
26
NAME test -abi_config_custom
22
27
COMMAND abi_config_custom ${DOCTEST_TEST_FILTER} )
28
+ set_tests_properties (test -abi_config_custom PROPERTIES
29
+ LABELS "offline"
30
+ )
Original file line number Diff line number Diff line change @@ -17,3 +17,6 @@ target_link_libraries(abi_compat_diag PRIVATE
17
17
add_test (
18
18
NAME test -abi_compat_diag
19
19
COMMAND abi_compat_diag ${DOCTEST_TEST_FILTER} )
20
+ set_tests_properties (test -abi_compat_diag PROPERTIES
21
+ LABELS "offline"
22
+ )
Original file line number Diff line number Diff line change @@ -10,3 +10,6 @@ target_link_libraries(abi_compat_inline_ns PRIVATE abi_compat_main)
10
10
add_test (
11
11
NAME test -abi_compat_inline_ns
12
12
COMMAND abi_compat_inline_ns ${DOCTEST_TEST_FILTER} )
13
+ set_tests_properties (test -abi_compat_inline_ns PROPERTIES
14
+ LABELS "offline"
15
+ )
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ add_test(NAME cmake_add_subdirectory_build
10
10
)
11
11
set_tests_properties (cmake_add_subdirectory_configure PROPERTIES
12
12
FIXTURES_SETUP cmake_add_subdirectory
13
- LABELS not_reproducible
13
+ LABELS " not_reproducible;offline"
14
14
)
15
15
set_tests_properties (cmake_add_subdirectory_build PROPERTIES
16
16
FIXTURES_REQUIRED cmake_add_subdirectory
17
- LABELS not_reproducible
17
+ LABELS " not_reproducible;offline"
18
18
)
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ add_test(NAME cmake_import_build
11
11
)
12
12
set_tests_properties (cmake_import_configure PROPERTIES
13
13
FIXTURES_SETUP cmake_import
14
- LABELS not_reproducible
14
+ LABELS " not_reproducible;offline"
15
15
)
16
16
set_tests_properties (cmake_import_build PROPERTIES
17
17
FIXTURES_REQUIRED cmake_import
18
- LABELS not_reproducible
18
+ LABELS " not_reproducible;offline"
19
19
)
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ add_test(NAME cmake_import_minver_build
11
11
)
12
12
set_tests_properties (cmake_import_minver_configure PROPERTIES
13
13
FIXTURES_SETUP cmake_import_minver
14
- LABELS not_reproducible
14
+ LABELS " not_reproducible;offline"
15
15
)
16
16
set_tests_properties (cmake_import_minver_build PROPERTIES
17
17
FIXTURES_REQUIRED cmake_import_minver
18
- LABELS not_reproducible
18
+ LABELS " not_reproducible;offline"
19
19
)
Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ add_test(NAME cmake_target_include_directories_build
10
10
)
11
11
set_tests_properties (cmake_target_include_directories_configure PROPERTIES
12
12
FIXTURES_SETUP cmake_target_include_directories
13
- LABELS not_reproducible
13
+ LABELS " not_reproducible;offline"
14
14
)
15
15
set_tests_properties (cmake_target_include_directories_build PROPERTIES
16
16
FIXTURES_REQUIRED cmake_target_include_directories
17
- LABELS not_reproducible
17
+ LABELS " not_reproducible;offline"
18
18
)
You can’t perform that action at this time.
0 commit comments