Skip to content
Snippets Groups Projects
Commit bb2ce821 authored by Ben Boeckel's avatar Ben Boeckel Committed by Kitware Robot
Browse files

Merge topic 'ldd-testing-exclude-fix'


8bbfd3c2 SuperbuildTestingMacros: fix variable collision in exclusion

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !618
parents 61450f8d 8bbfd3c2
No related branches found
No related tags found
2 merge requests!650Revive paraview/release branch and update it to commit used for ParaView 5.12.0,!618SuperbuildTestingMacros: fix variable collision in exclusion
Pipeline #379983 passed
...@@ -199,14 +199,14 @@ if (_run_superbuild_test_loadable_modules) ...@@ -199,14 +199,14 @@ if (_run_superbuild_test_loadable_modules)
continue () continue ()
endif () endif ()
set(exclude 0) set(exclude_path 0)
foreach (exclude IN LISTS excludes) foreach (exclude IN LISTS excludes)
if (module MATCHES "${exclude}") if (module MATCHES "${exclude}")
set(exclude 1) set(exclude_path 1)
break () break ()
endif () endif ()
endforeach () endforeach ()
if (exclude) if (exclude_path)
continue () continue ()
endif () endif ()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment