diff options
author | Brad King <brad.king@kitware.com> | 2023-05-18 20:12:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-05-22 20:50:51 (GMT) |
commit | 3728f079af64b4d4ea494ce7a8f723dee5f84a7a (patch) | |
tree | d7c9298ad7b89e4aa5a8879a1604432834aeddc8 /Tests/RunCMake/file | |
parent | 2316ea6ac2a136c59f2453bff1ee076c28f16e5d (diff) | |
download | CMake-3728f079af64b4d4ea494ce7a8f723dee5f84a7a.zip CMake-3728f079af64b4d4ea494ce7a8f723dee5f84a7a.tar.gz CMake-3728f079af64b4d4ea494ce7a8f723dee5f84a7a.tar.bz2 |
codespell: Avoid escape sequence that looks like misspelled "nodes"
Diffstat (limited to 'Tests/RunCMake/file')
-rw-r--r-- | Tests/RunCMake/file/COPY_FILE-file-replace.cmake | 2 | ||||
-rw-r--r-- | Tests/RunCMake/file/COPY_FILE-link-to-file.cmake | 2 | ||||
-rw-r--r-- | Tests/RunCMake/file/RENAME-file-replace.cmake | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Tests/RunCMake/file/COPY_FILE-file-replace.cmake b/Tests/RunCMake/file/COPY_FILE-file-replace.cmake index 40e4290..cdb06fa 100644 --- a/Tests/RunCMake/file/COPY_FILE-file-replace.cmake +++ b/Tests/RunCMake/file/COPY_FILE-file-replace.cmake @@ -5,5 +5,5 @@ file(WRITE "${newname}" "b") file(COPY_FILE "${oldname}" "${newname}") file(READ "${newname}" new) if(NOT "${new}" STREQUAL "a") - message(FATAL_ERROR "New name:\n ${newname}\ndoes not contain expected content 'a'.") + message(FATAL_ERROR "New name:\n ${newname}\n" "does not contain expected content 'a'.") endif() diff --git a/Tests/RunCMake/file/COPY_FILE-link-to-file.cmake b/Tests/RunCMake/file/COPY_FILE-link-to-file.cmake index 93a0204..53a6b11 100644 --- a/Tests/RunCMake/file/COPY_FILE-link-to-file.cmake +++ b/Tests/RunCMake/file/COPY_FILE-link-to-file.cmake @@ -6,5 +6,5 @@ file(CREATE_LINK "${lnkname}" "${oldname}") file(COPY_FILE "${oldname}" "${newname}") file(READ "${newname}" new) if(NOT "${new}" STREQUAL "a") - message(FATAL_ERROR "New name:\n ${newname}\ndoes not contain expected content 'a'.") + message(FATAL_ERROR "New name:\n ${newname}\n" "does not contain expected content 'a'.") endif() diff --git a/Tests/RunCMake/file/RENAME-file-replace.cmake b/Tests/RunCMake/file/RENAME-file-replace.cmake index efbfaed..454e27e 100644 --- a/Tests/RunCMake/file/RENAME-file-replace.cmake +++ b/Tests/RunCMake/file/RENAME-file-replace.cmake @@ -5,5 +5,5 @@ file(WRITE "${newname}" "b") file(RENAME "${oldname}" "${newname}") file(READ "${newname}" new) if(NOT "${new}" STREQUAL "a") - message(FATAL_ERROR "New name:\n ${newname}\ndoes not contain expected content 'a'.") + message(FATAL_ERROR "New name:\n ${newname}\n" "does not contain expected content 'a'.") endif() |