diff options
author | Marc Chevrier <marc.chevrier@gmail.com> | 2020-11-09 15:16:07 (GMT) |
---|---|---|
committer | Marc Chevrier <marc.chevrier@gmail.com> | 2020-11-11 22:43:51 (GMT) |
commit | ed21ad181e0c3fd9fc1a8094fc2f8b8daafefc6d (patch) | |
tree | 58ae66a7739e5f86240c109b145d5e8d019b9445 /Tests/RunCMake/cmake_path/APPEND_STRING.cmake | |
parent | 8b9497e3e52cfa23a1ba64f08db7f4ef9b602382 (diff) | |
download | CMake-ed21ad181e0c3fd9fc1a8094fc2f8b8daafefc6d.zip CMake-ed21ad181e0c3fd9fc1a8094fc2f8b8daafefc6d.tar.gz CMake-ed21ad181e0c3fd9fc1a8094fc2f8b8daafefc6d.tar.bz2 |
cmake_path: various enhancements to subcommands/keywords
This change address partly the remarks done in issue #21385
Diffstat (limited to 'Tests/RunCMake/cmake_path/APPEND_STRING.cmake')
-rw-r--r-- | Tests/RunCMake/cmake_path/APPEND_STRING.cmake | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Tests/RunCMake/cmake_path/APPEND_STRING.cmake b/Tests/RunCMake/cmake_path/APPEND_STRING.cmake new file mode 100644 index 0000000..ea5f2dd --- /dev/null +++ b/Tests/RunCMake/cmake_path/APPEND_STRING.cmake @@ -0,0 +1,20 @@ + +include ("${RunCMake_SOURCE_DIR}/check_errors.cmake") +unset (errors) + +set (path "/a/b") +cmake_path (APPEND_STRING path "cd") +if (NOT path STREQUAL "/a/bcd") + list (APPEND errors "'${path}' instead of 'a/bcd'") +endif() + +set (path "/a/b") +cmake_path (APPEND_STRING path "cd" "ef" OUTPUT_VARIABLE output) +if (NOT path STREQUAL "/a/b") + list (APPEND errors "input changed unexpectedly") +endif() +if (NOT output STREQUAL "/a/bcdef") + list (APPEND errors "'${output}' instead of 'a/bcdef'") +endif() + +check_errors (APPEND_STRING ${errors}) |