Skip to content

Commit

Permalink
Bugfix: Drop out of the right loop
Browse files Browse the repository at this point in the history
  • Loading branch information
tamiko committed Dec 6, 2021
1 parent 311e6ff commit c8cb111
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions cmake/macros/macro_deal_ii_pickup_tests.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -278,10 +278,6 @@ Comparison operator \"=\" expected for boolean match.\n"
ENDIF()
ENDIF()

IF(_skip_test)
CONTINUE() # next test
ENDIF()

#
# Process version constraints:
#
Expand All @@ -298,11 +294,15 @@ Comparison operator \"=\" expected for boolean match.\n"
"${DEAL_II_${_feature}_VERSION}" VERSION_LESS "${_version}" ) OR
( "${_operator}" STREQUAL ".leq." AND
"${DEAL_II_${_feature}_VERSION}" VERSION_GREATER "${_version}" ) )
CONTINUE() # next test
SET(_skip_test TRUE)
ENDIF()
ENDIF()
ENDFOREACH()

IF(_skip_test)
CONTINUE() # next test
ENDIF()

#
# We've made it all the way to here, which means that we actually
# want to define the test
Expand Down

0 comments on commit c8cb111

Please sign in to comment.