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 | |
parent | 2316ea6ac2a136c59f2453bff1ee076c28f16e5d (diff) | |
download | CMake-3728f079af64b4d4ea494ce7a8f723dee5f84a7a.zip CMake-3728f079af64b4d4ea494ce7a8f723dee5f84a7a.tar.gz CMake-3728f079af64b4d4ea494ce7a8f723dee5f84a7a.tar.bz2 |
codespell: Avoid escape sequence that looks like misspelled "nodes"
19 files changed, 60 insertions, 56 deletions
diff --git a/Source/cmGlobalGhsMultiGenerator.cxx b/Source/cmGlobalGhsMultiGenerator.cxx index 578e805..2453bfc 100644 --- a/Source/cmGlobalGhsMultiGenerator.cxx +++ b/Source/cmGlobalGhsMultiGenerator.cxx @@ -101,11 +101,11 @@ bool cmGlobalGhsMultiGenerator::SetGeneratorToolset(std::string const& ts, /* check if the toolset changed from last generate */ if (cmNonempty(prevTool) && !cmSystemTools::ComparePath(gbuild, *prevTool)) { - std::string const& e = - cmStrCat("toolset build tool: ", gbuild, - "\nDoes not match the previously used build tool: ", *prevTool, - "\nEither remove the CMakeCache.txt file and CMakeFiles " - "directory or choose a different binary directory."); + std::string const& e = cmStrCat( + "toolset build tool: ", gbuild, '\n', + "Does not match the previously used build tool: ", *prevTool, '\n', + "Either remove the CMakeCache.txt file and CMakeFiles " + "directory or choose a different binary directory."); mf->IssueMessage(MessageType::FATAL_ERROR, e); return false; } diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 7b13552..284c5e7 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -2369,11 +2369,11 @@ int cmake::ActualConfigure() cmValue genName = this->State->GetInitializedCacheValue("CMAKE_GENERATOR"); if (genName) { if (!this->GlobalGenerator->MatchesGeneratorName(*genName)) { - std::string message = - cmStrCat("Error: generator : ", this->GlobalGenerator->GetName(), - "\nDoes not match the generator used previously: ", *genName, - "\nEither remove the CMakeCache.txt file and CMakeFiles " - "directory or choose a different binary directory."); + std::string message = cmStrCat( + "Error: generator : ", this->GlobalGenerator->GetName(), '\n', + "Does not match the generator used previously: ", *genName, '\n', + "Either remove the CMakeCache.txt file and CMakeFiles " + "directory or choose a different binary directory."); cmSystemTools::Error(message); return -2; } @@ -2399,11 +2399,11 @@ int cmake::ActualConfigure() if (cmValue instance = this->State->GetInitializedCacheValue("CMAKE_GENERATOR_INSTANCE")) { if (this->GeneratorInstanceSet && this->GeneratorInstance != *instance) { - std::string message = - cmStrCat("Error: generator instance: ", this->GeneratorInstance, - "\nDoes not match the instance used previously: ", *instance, - "\nEither remove the CMakeCache.txt file and CMakeFiles " - "directory or choose a different binary directory."); + std::string message = cmStrCat( + "Error: generator instance: ", this->GeneratorInstance, '\n', + "Does not match the instance used previously: ", *instance, '\n', + "Either remove the CMakeCache.txt file and CMakeFiles " + "directory or choose a different binary directory."); cmSystemTools::Error(message); return -2; } @@ -2418,9 +2418,9 @@ int cmake::ActualConfigure() if (this->GeneratorPlatformSet && this->GeneratorPlatform != *platformName) { std::string message = cmStrCat( - "Error: generator platform: ", this->GeneratorPlatform, - "\nDoes not match the platform used previously: ", *platformName, - "\nEither remove the CMakeCache.txt file and CMakeFiles " + "Error: generator platform: ", this->GeneratorPlatform, '\n', + "Does not match the platform used previously: ", *platformName, '\n', + "Either remove the CMakeCache.txt file and CMakeFiles " "directory or choose a different binary directory."); cmSystemTools::Error(message); return -2; @@ -2434,9 +2434,9 @@ int cmake::ActualConfigure() this->State->GetInitializedCacheValue("CMAKE_GENERATOR_TOOLSET")) { if (this->GeneratorToolsetSet && this->GeneratorToolset != *tsName) { std::string message = - cmStrCat("Error: generator toolset: ", this->GeneratorToolset, - "\nDoes not match the toolset used previously: ", *tsName, - "\nEither remove the CMakeCache.txt file and CMakeFiles " + cmStrCat("Error: generator toolset: ", this->GeneratorToolset, '\n', + "Does not match the toolset used previously: ", *tsName, '\n', + "Either remove the CMakeCache.txt file and CMakeFiles " "directory or choose a different binary directory."); cmSystemTools::Error(message); return -2; diff --git a/Tests/Module/ExternalData/Data1Check.cmake b/Tests/Module/ExternalData/Data1Check.cmake index f60c209..7fe4389 100644 --- a/Tests/Module/ExternalData/Data1Check.cmake +++ b/Tests/Module/ExternalData/Data1Check.cmake @@ -1,24 +1,24 @@ file(STRINGS "${Data}" lines LIMIT_INPUT 1024) if(NOT "x${lines}" STREQUAL "xInput file already transformed.") - message(SEND_ERROR "Input file:\n ${Data}\ndoes not have expected content, but [[${lines}]]") + message(SEND_ERROR "Input file:\n ${Data}\n" "does not have expected content, but [[${lines}]]") endif() if(DEFINED DataSpace) file(STRINGS "${DataSpace}" lines LIMIT_INPUT 1024) if(NOT "x${lines}" STREQUAL "xInput file already transformed.") - message(SEND_ERROR "Input file:\n ${DataSpace}\ndoes not have expected content, but [[${lines}]]") + message(SEND_ERROR "Input file:\n ${DataSpace}\n" "does not have expected content, but [[${lines}]]") endif() endif() file(STRINGS "${DataScript}" lines LIMIT_INPUT 1024) if(NOT "x${lines}" STREQUAL "xDataScript") - message(SEND_ERROR "Input file:\n ${DataScript}\ndoes not have expected content, but [[${lines}]]") + message(SEND_ERROR "Input file:\n ${DataScript}\n" "does not have expected content, but [[${lines}]]") endif() file(STRINGS "${DataAlgoMapA}" lines LIMIT_INPUT 1024) if(NOT "x${lines}" STREQUAL "xDataAlgoMap") - message(SEND_ERROR "Input file:\n ${DataAlgoMapA}\ndoes not have expected content, but [[${lines}]]") + message(SEND_ERROR "Input file:\n ${DataAlgoMapA}\n" "does not have expected content, but [[${lines}]]") endif() file(STRINGS "${DataAlgoMapB}" lines LIMIT_INPUT 1024) if(NOT "x${lines}" STREQUAL "xDataAlgoMap") - message(SEND_ERROR "Input file:\n ${DataAlgoMapB}\ndoes not have expected content, but [[${lines}]]") + message(SEND_ERROR "Input file:\n ${DataAlgoMapB}\n" "does not have expected content, but [[${lines}]]") endif() if(DataMissing) if(EXISTS "${DataMissing}") @@ -54,7 +54,7 @@ foreach(s A B C D) foreach(n "" ${Series${s}l}) string(REGEX REPLACE "\\.dat$" "${n}.dat" file "${Series${s}}") if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() endforeach() @@ -62,45 +62,45 @@ foreach(s A B C D) foreach(n ${Series${s}l}) string(REGEX REPLACE "${Series${s}n1}$" "${n}.dat" file "${Series${s}n}") if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() endforeach() foreach(n .1 .2 .3 .4) string(REGEX REPLACE "\\.1\\.dat$" "${n}.dat" file "${SeriesMixed}") if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() foreach(n A B) string(REGEX REPLACE "A\\.dat$" "${n}.dat" file "${Paired}") if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() foreach(n Top A B C) string(REGEX REPLACE "Top\\.dat$" "${n}.dat" file "${Meta}") if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() foreach(n A B C) set(file "${Directory}/${n}.dat") if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() foreach(n A Sub1/A Sub2/Dir/A B Sub1/B Sub2/Dir/B C Sub1/C Sub2/Dir/C) set(file "${DirRecurse}/${n}.dat") if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() list(LENGTH Semicolons len) if("${len}" EQUAL 2) foreach(file ${Semicolons}) if(NOT EXISTS "${file}") - message(SEND_ERROR "Input file:\n ${file}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${file}\n" "does not exist!") endif() endforeach() else() diff --git a/Tests/Module/ExternalData/Data2/Data2Check.cmake b/Tests/Module/ExternalData/Data2/Data2Check.cmake index d5b0c7b..412593c 100644 --- a/Tests/Module/ExternalData/Data2/Data2Check.cmake +++ b/Tests/Module/ExternalData/Data2/Data2Check.cmake @@ -1,12 +1,12 @@ foreach(d "${Data2}" "${Data2b}") file(STRINGS "${d}" lines LIMIT_INPUT 1024) if(NOT "x${lines}" STREQUAL "xInput file already transformed.") - message(SEND_ERROR "Input file:\n ${d}\ndoes not have expected content, but [[${lines}]]") + message(SEND_ERROR "Input file:\n ${d}\n" "does not have expected content, but [[${lines}]]") endif() endforeach() foreach(n 1 2 3) string(REGEX REPLACE "_1_\\.my\\.dat$" "_${n}_.my.dat" SeriesCFile "${SeriesC}") if(NOT EXISTS "${SeriesCFile}") - message(SEND_ERROR "Input file:\n ${SeriesCFile}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${SeriesCFile}\n" "does not exist!") endif() endforeach() diff --git a/Tests/Module/ExternalData/Data3/Data3Check.cmake b/Tests/Module/ExternalData/Data3/Data3Check.cmake index de98839..da79fdb 100644 --- a/Tests/Module/ExternalData/Data3/Data3Check.cmake +++ b/Tests/Module/ExternalData/Data3/Data3Check.cmake @@ -1,8 +1,8 @@ if(NOT EXISTS "${Data}") - message(SEND_ERROR "Input file:\n ${Data}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${Data}\n" "does not exist!") endif() if(NOT EXISTS "${Other}") - message(SEND_ERROR "Input file:\n ${Other}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${Other}\n" "does not exist!") endif() # Verify that the 'Data' object was found in the second store location left # from Data1 target downloads and that the 'Other' object was downloaded to diff --git a/Tests/Module/ExternalData/Data4/Data4Check.cmake b/Tests/Module/ExternalData/Data4/Data4Check.cmake index e614cc4..a1d82d5 100644 --- a/Tests/Module/ExternalData/Data4/Data4Check.cmake +++ b/Tests/Module/ExternalData/Data4/Data4Check.cmake @@ -1,8 +1,8 @@ if(NOT EXISTS "${Data}") - message(SEND_ERROR "Input file:\n ${Data}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${Data}\n" "does not exist!") endif() if(NOT EXISTS "${Other}") - message(SEND_ERROR "Input file:\n ${Other}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${Other}\n" "does not exist!") endif() # Verify that the 'Data' object was found in the second store location left # from Data1 target downloads and that the 'Other' object was found in the diff --git a/Tests/Module/ExternalData/Data5/Data5Check.cmake b/Tests/Module/ExternalData/Data5/Data5Check.cmake index 4dea9a4..79c2161 100644 --- a/Tests/Module/ExternalData/Data5/Data5Check.cmake +++ b/Tests/Module/ExternalData/Data5/Data5Check.cmake @@ -1,4 +1,4 @@ file(STRINGS "${Data5}" lines LIMIT_INPUT 1024) if(NOT "x${lines}" STREQUAL "xInput file already transformed.") - message(SEND_ERROR "Input file:\n ${Data5}\ndoes not have expected content, but [[${lines}]]") + message(SEND_ERROR "Input file:\n ${Data5}\n" "does not have expected content, but [[${lines}]]") endif() diff --git a/Tests/Module/ExternalData/DataNoSymlinks/DataNoSymlinksCheck.cmake b/Tests/Module/ExternalData/DataNoSymlinks/DataNoSymlinksCheck.cmake index 2be3571..a73668a 100644 --- a/Tests/Module/ExternalData/DataNoSymlinks/DataNoSymlinksCheck.cmake +++ b/Tests/Module/ExternalData/DataNoSymlinks/DataNoSymlinksCheck.cmake @@ -1,5 +1,5 @@ if(NOT EXISTS "${Data}") - message(SEND_ERROR "Input file:\n ${Data}\ndoes not exist!") + message(SEND_ERROR "Input file:\n ${Data}\n" "does not exist!") endif() if(IS_SYMLINK "${Data}") message(SEND_ERROR "Input file:\n ${Data}\nis a symlink but should not be!") diff --git a/Tests/RunCMake/File_Generate/CMP0070-NEW-check.cmake b/Tests/RunCMake/File_Generate/CMP0070-NEW-check.cmake index 05ec26e..6183635 100644 --- a/Tests/RunCMake/File_Generate/CMP0070-NEW-check.cmake +++ b/Tests/RunCMake/File_Generate/CMP0070-NEW-check.cmake @@ -5,7 +5,7 @@ foreach(f if(EXISTS "${f}") file(READ "${f}" content) if(NOT content MATCHES "^relative-input-NEW[\r\n]*$") - string(APPEND RunCMake_TEST_FAILED "File\n ${f}\ndoes not have expected content.\n") + string(APPEND RunCMake_TEST_FAILED "File\n ${f}\n" "does not have expected content.\n") endif() else() string(APPEND RunCMake_TEST_FAILED "Missing\n ${f}\n") diff --git a/Tests/RunCMake/File_Generate/CMP0070-OLD-check.cmake b/Tests/RunCMake/File_Generate/CMP0070-OLD-check.cmake index a71d822..0f0fc09 100644 --- a/Tests/RunCMake/File_Generate/CMP0070-OLD-check.cmake +++ b/Tests/RunCMake/File_Generate/CMP0070-OLD-check.cmake @@ -5,7 +5,7 @@ foreach(f if(EXISTS "${f}") file(READ "${f}" content) if(NOT content MATCHES "^relative-input-OLD[\r\n]*$") - string(APPEND RunCMake_TEST_FAILED "File\n ${f}\ndoes not have expected content.\n") + string(APPEND RunCMake_TEST_FAILED "File\n ${f}\n" "does not have expected content.\n") endif() else() string(APPEND RunCMake_TEST_FAILED "Missing\n ${f}\n") diff --git a/Tests/RunCMake/File_Generate/CMP0070-WARN-check.cmake b/Tests/RunCMake/File_Generate/CMP0070-WARN-check.cmake index 1488df0..0ee4a82 100644 --- a/Tests/RunCMake/File_Generate/CMP0070-WARN-check.cmake +++ b/Tests/RunCMake/File_Generate/CMP0070-WARN-check.cmake @@ -5,7 +5,7 @@ foreach(f if(EXISTS "${f}") file(READ "${f}" content) if(NOT content MATCHES "^relative-input-WARN[\r\n]*$") - string(APPEND RunCMake_TEST_FAILED "File\n ${f}\ndoes not have expected content.\n") + string(APPEND RunCMake_TEST_FAILED "File\n ${f}\n" "does not have expected content.\n") endif() else() string(APPEND RunCMake_TEST_FAILED "Missing\n ${f}\n") diff --git a/Tests/RunCMake/GeneratorToolset/TestToolsetCustomFlagTableDir-check.cmake b/Tests/RunCMake/GeneratorToolset/TestToolsetCustomFlagTableDir-check.cmake index 79752b1..f95173b 100644 --- a/Tests/RunCMake/GeneratorToolset/TestToolsetCustomFlagTableDir-check.cmake +++ b/Tests/RunCMake/GeneratorToolset/TestToolsetCustomFlagTableDir-check.cmake @@ -1,6 +1,6 @@ set(vcProjectFile "${RunCMake_TEST_BINARY_DIR}/main.vcxproj") if(NOT EXISTS "${vcProjectFile}") - set(RunCMake_TEST_FAILED "Project file\n ${vcProjectFile}\ndoes not exist.") + string(CONCAT RunCMake_TEST_FAILED "Project file\n ${vcProjectFile}\n" "does not exist.") return() endif() diff --git a/Tests/RunCMake/MacOSVersions/MacOSVersions-build-check.cmake b/Tests/RunCMake/MacOSVersions/MacOSVersions-build-check.cmake index c4faa8b..3eff573 100644 --- a/Tests/RunCMake/MacOSVersions/MacOSVersions-build-check.cmake +++ b/Tests/RunCMake/MacOSVersions/MacOSVersions-build-check.cmake @@ -21,7 +21,7 @@ foreach(ver [[compatibility version 2\.1\.0]] ) if(NOT "${out}" MATCHES "( |\n)${ver}( |\n)") - set(RunCMake_TEST_FAILED "Library file:\n ${lib}\ndoes not contain '${ver}'") + string(CONCAT RunCMake_TEST_FAILED "Library file:\n ${lib}\n" "does not contain '${ver}'") return() endif() endforeach() diff --git a/Tests/RunCMake/Ninja/CustomCommandDepfile-check.cmake b/Tests/RunCMake/Ninja/CustomCommandDepfile-check.cmake index 51f4f52..edde0c0 100644 --- a/Tests/RunCMake/Ninja/CustomCommandDepfile-check.cmake +++ b/Tests/RunCMake/Ninja/CustomCommandDepfile-check.cmake @@ -3,8 +3,10 @@ file(READ "${log}" build_file) set(RunCMake_TEST_FAILED) if(NOT "${build_file}" MATCHES "depfile = test\\.d") - list(APPEND RunCMake_TEST_FAILED "Log file:\n ${log}\ndoes not have expected line: depfile = test.d") + string(CONCAT no_test_d "Log file:\n ${log}\n" "does not have expected line: depfile = test.d") + list(APPEND RunCMake_TEST_FAILED "${no_test_d}") endif() if(NOT "${build_file}" MATCHES "depfile = test_Debug\\.d") - list(APPEND RunCMake_TEST_FAILED "\nLog file:\n ${log}\ndoes not have expected line: depfile = test_Debug.d") + string(CONCAT no_test_Debug_d "\nLog file:\n ${log}\n" "does not have expected line: depfile = test_Debug.d") + list(APPEND RunCMake_TEST_FAILED "${no_test_Debug_d}") endif() diff --git a/Tests/RunCMake/Ninja/CustomCommandJobPool-check.cmake b/Tests/RunCMake/Ninja/CustomCommandJobPool-check.cmake index 7f7fa33..793b5d2 100644 --- a/Tests/RunCMake/Ninja/CustomCommandJobPool-check.cmake +++ b/Tests/RunCMake/Ninja/CustomCommandJobPool-check.cmake @@ -1,8 +1,8 @@ set(log "${RunCMake_BINARY_DIR}/CustomCommandJobPool-build/build.ninja") file(READ "${log}" build_file) if(NOT "${build_file}" MATCHES "pool = custom_command_pool") - set(RunCMake_TEST_FAILED "Log file:\n ${log}\ndoes not have expected line: pool = custom_command_pool") + string(CONCAT RunCMake_TEST_FAILED "Log file:\n ${log}\n" "does not have expected line: pool = custom_command_pool") endif() if(NOT "${build_file}" MATCHES "pool = custom_target_pool") - set(RunCMake_TEST_FAILED "Log file:\n ${log}\ndoes not have expected line: pool = custom_target_pool") + string(CONCAT RunCMake_TEST_FAILED "Log file:\n ${log}\n" "does not have expected line: pool = custom_target_pool") endif() diff --git a/Tests/RunCMake/NinjaMultiConfig/CustomCommandDepfile-check.cmake b/Tests/RunCMake/NinjaMultiConfig/CustomCommandDepfile-check.cmake index a7837ca..3674aba 100644 --- a/Tests/RunCMake/NinjaMultiConfig/CustomCommandDepfile-check.cmake +++ b/Tests/RunCMake/NinjaMultiConfig/CustomCommandDepfile-check.cmake @@ -3,8 +3,10 @@ file(READ "${log}" build_file) set(RunCMake_TEST_FAILED) if(NOT "${build_file}" MATCHES "depfile = test\\.d") - list(APPEND RunCMake_TEST_FAILED "Log file:\n ${log}\ndoes not have expected line: depfile = test.d") + string(CONCAT no_test_d "Log file:\n ${log}\n" "does not have expected line: depfile = test.d") + list(APPEND RunCMake_TEST_FAILED "${no_test_d}") endif() if(NOT "${build_file}" MATCHES "depfile = test_Debug\\.d") - list(APPEND RunCMake_TEST_FAILED "\nLog file:\n ${log}\ndoes not have expected line: depfile = test_Debug.d") + string(CONCAT no_test_Debug_d "\nLog file:\n ${log}\n" "does not have expected line: depfile = test_Debug.d") + list(APPEND RunCMake_TEST_FAILED "${no_test_Debug_d}") endif() 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() |