From e00912e5b4f414ae2dad462970e28a17b8938ada Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Mon, 6 Dec 2021 17:45:33 -0600 Subject: [PATCH] Bugfix: Drop out of the right loop --- cmake/macros/macro_deal_ii_pickup_tests.cmake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cmake/macros/macro_deal_ii_pickup_tests.cmake b/cmake/macros/macro_deal_ii_pickup_tests.cmake index 9803eac172..68f5a54b63 100644 --- a/cmake/macros/macro_deal_ii_pickup_tests.cmake +++ b/cmake/macros/macro_deal_ii_pickup_tests.cmake @@ -278,10 +278,6 @@ Comparison operator \"=\" expected for boolean match.\n" ENDIF() ENDIF() - IF(_skip_test) - CONTINUE() # next test - ENDIF() - # # Process version constraints: # @@ -303,6 +299,10 @@ Comparison operator \"=\" expected for boolean match.\n" ENDIF() ENDFOREACH() + IF(_skip_test) + CONTINUE() + ENDIF() + # # We've made it all the way to here, which means that we actually # want to define the test -- 2.39.5