diff options
author | Christian Schmidbauer <ch.schmidbauer@gmail.com> | 2017-03-10 20:50:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-03-10 20:50:25 (GMT) |
commit | 7a2de256c49e5ac2d78646dd9f3075f0842902bc (patch) | |
tree | cb87747fdc695f6e83a991fa07ee7a0875246653 /Tests | |
parent | d9bdcf34efa79dcdea4ded8e90b80a55db69fbf6 (diff) | |
download | CMake-7a2de256c49e5ac2d78646dd9f3075f0842902bc.zip CMake-7a2de256c49e5ac2d78646dd9f3075f0842902bc.tar.gz CMake-7a2de256c49e5ac2d78646dd9f3075f0842902bc.tar.bz2 |
Tests: Fix CMakeOnly.find_library test logic for libx32 case
Teach `test_find_library_subst` how to convert `libx32` to `lib`
so that the test case actually covers what we intend it to.
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeOnly/find_library/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeOnly/find_library/CMakeLists.txt b/Tests/CMakeOnly/find_library/CMakeLists.txt index 749cf42..fe3815e 100644 --- a/Tests/CMakeOnly/find_library/CMakeLists.txt +++ b/Tests/CMakeOnly/find_library/CMakeLists.txt @@ -24,7 +24,7 @@ endmacro() macro(test_find_library_subst expected) get_filename_component(dir ${expected} PATH) get_filename_component(name ${expected} NAME) - string(REGEX REPLACE "lib/?[36X][24Y][Z]*" "lib" dir "${dir}") + string(REGEX REPLACE "lib/?[36Xx][24Y3][Z2]*" "lib" dir "${dir}") test_find_library(", searched as ${dir}" "${expected}" NAMES ${name} PATHS ${CMAKE_CURRENT_SOURCE_DIR}/${dir} |