Skip to content

Commit

Permalink
Attempting to skip long_debug and long_memcheck tests including numdiffs
Browse files Browse the repository at this point in the history
  • Loading branch information
scharlton2 committed Apr 19, 2024
1 parent 0f255f6 commit febb177
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions mytest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,13 @@ if (NUMDIFF_COMMAND)
endif()

if (NOT PHRQC_ENABLE_REGRESSION_TESTING)
foreach(test ${LONG_DEBUG})
set_tests_properties(${test} PROPERTIES DISABLED TRUE)
foreach(test ${TESTS})
get_test_property(test_labels ${test} LABELS)
if ("long_debug" IN_LIST test_labels)
set_tests_properties(${test} PROPERTIES DISABLED TRUE)
endif()
if ("long_memcheck" IN_LIST test_labels)
set_tests_properties(${test} PROPERTIES DISABLED TRUE)
endif()
endforeach()
endif()

0 comments on commit febb177

Please # to comment.