Skip to content

Commit b20add2

Browse files
committed
fix: add missing test labels
1 parent 51ced0c commit b20add2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

tests/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ if( ENABLE_INTEGRATION_TESTS )
2727
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/tests/mock_core
2828
)
2929

30-
set_tests_properties(start_mock PROPERTIES FIXTURES_SETUP FIX_MOCK)
31-
set_tests_properties(stop_mock PROPERTIES FIXTURES_CLEANUP FIX_MOCK)
30+
set_tests_properties(start_mock PROPERTIES FIXTURES_SETUP FIX_MOCK LABELS "integration")
31+
set_tests_properties(stop_mock PROPERTIES FIXTURES_CLEANUP FIX_MOCK LABELS "integration"))
3232

3333
add_subdirectory(mock_core)
3434
add_subdirectory(mock)

tests/mock/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ foreach(PROG
1919
COMMAND ${CMAKE_CURRENT_BINARY_DIR}/mock_liveness_${PROG}
2020
WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/tests/mock_core
2121
)
22-
set_tests_properties(mock_liveness_${PROG} PROPERTIES FIXTURES_REQUIRED FIX_MOCK)
22+
set_tests_properties(mock_liveness_${PROG} PROPERTIES FIXTURES_REQUIRED FIX_MOCK LABELS "integration")
2323

2424
endforeach(PROG)

0 commit comments

Comments
 (0)