summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2022-01-31 15:33:09 (GMT)
committerKyle Edwards <kyle.edwards@kitware.com>2022-01-31 15:33:54 (GMT)
commit30e5c1d92baf6e5ac0daed4e4debcdf208968a65 (patch)
tree3f5c13d962c3f75f95040773f964ea3fd99f2122 /Tests/RunCMake
parente7c300e3567a394bcc8e90ddccf46faa68d3afae (diff)
downloadCMake-30e5c1d92baf6e5ac0daed4e4debcdf208968a65.zip
CMake-30e5c1d92baf6e5ac0daed4e4debcdf208968a65.tar.gz
CMake-30e5c1d92baf6e5ac0daed4e4debcdf208968a65.tar.bz2
find_package(): Add tests for CMAKE_IGNORE_PATH
Diffstat (limited to 'Tests/RunCMake')
-rw-r--r--Tests/RunCMake/find_package/IgnorePath.cmake12
-rw-r--r--Tests/RunCMake/find_package/RunCMakeTest.cmake1
2 files changed, 13 insertions, 0 deletions
diff --git a/Tests/RunCMake/find_package/IgnorePath.cmake b/Tests/RunCMake/find_package/IgnorePath.cmake
new file mode 100644
index 0000000..f40549b
--- /dev/null
+++ b/Tests/RunCMake/find_package/IgnorePath.cmake
@@ -0,0 +1,12 @@
+set(CMAKE_PREFIX_PATH
+ ${CMAKE_SOURCE_DIR}/PackageRoot/foo/cmake_root
+ ${CMAKE_SOURCE_DIR}/PackageRoot/foo/env_root
+ )
+set(CMAKE_IGNORE_PATH
+ ${CMAKE_SOURCE_DIR}/PackageRoot//foo/cmake_root// # Test double slashes
+ ${CMAKE_SOURCE_DIR}/PackageRoot/foo/env_root/cmake
+ )
+find_package(Bar QUIET CONFIG)
+if(Bar_FOUND)
+ message(FATAL_ERROR "Bar should not be found, was found in ${Bar_DIR}")
+endif()
diff --git a/Tests/RunCMake/find_package/RunCMakeTest.cmake b/Tests/RunCMake/find_package/RunCMakeTest.cmake
index 2bace98..12701dc 100644
--- a/Tests/RunCMake/find_package/RunCMakeTest.cmake
+++ b/Tests/RunCMake/find_package/RunCMakeTest.cmake
@@ -44,6 +44,7 @@ run_cmake(VersionRangeConfig2)
run_cmake(VersionRangeConfig02)
run_cmake(VersionRangeConfigStd)
run_cmake(VersionRangeConfigStd2)
+run_cmake(IgnorePath)
if(UNIX
AND NOT MSYS # FIXME: This works on CYGWIN but not on MSYS
)