We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f255f6 commit febb177Copy full SHA for febb177
mytest/CMakeLists.txt
@@ -839,7 +839,13 @@ if (NUMDIFF_COMMAND)
839
endif()
840
841
if (NOT PHRQC_ENABLE_REGRESSION_TESTING)
842
- foreach(test ${LONG_DEBUG})
843
- set_tests_properties(${test} PROPERTIES DISABLED TRUE)
+ foreach(test ${TESTS})
+ get_test_property(test_labels ${test} LABELS)
844
+ if ("long_debug" IN_LIST test_labels)
845
+ set_tests_properties(${test} PROPERTIES DISABLED TRUE)
846
+ endif()
847
+ if ("long_memcheck" IN_LIST test_labels)
848
849
850
endforeach()
851
0 commit comments