summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestGenericHandler.cxx
diff options
context:
space:
mode:
authorChristian Häggström <christian.haggstrom@orexplore.com>2023-01-03 19:33:37 (GMT)
committerBrad King <brad.king@kitware.com>2023-01-11 20:52:37 (GMT)
commit5e7a4ad1a11dbc0313792497431d6eef975ab789 (patch)
treead24b5d381311991f916b1b2c8d4f7a1c812e73f /Source/CTest/cmCTestGenericHandler.cxx
parent51a0292d9cb24e13f6b600bc97d950ad4344cfa5 (diff)
downloadCMake-5e7a4ad1a11dbc0313792497431d6eef975ab789.zip
CMake-5e7a4ad1a11dbc0313792497431d6eef975ab789.tar.gz
CMake-5e7a4ad1a11dbc0313792497431d6eef975ab789.tar.bz2
ctest: Add missing newlines on several error messages
Without this: user@host:~$ ctest --build-and-test foo --build-and-test must have source and binary dir Problem parsing command line arguments within a handleruser@host:~$
Diffstat (limited to 'Source/CTest/cmCTestGenericHandler.cxx')
-rw-r--r--Source/CTest/cmCTestGenericHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestGenericHandler.cxx b/Source/CTest/cmCTestGenericHandler.cxx
index 1c292c7..ae9d84e 100644
--- a/Source/CTest/cmCTestGenericHandler.cxx
+++ b/Source/CTest/cmCTestGenericHandler.cxx
@@ -121,7 +121,7 @@ bool cmCTestGenericHandler::StartResultingXML(cmCTest::Part part,
if (!name) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Cannot create resulting XML file without providing the name"
- << std::endl;);
+ << std::endl);
return false;
}
std::ostringstream ostr;
@@ -157,7 +157,7 @@ bool cmCTestGenericHandler::StartLogFile(const char* name,
if (!name) {
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Cannot create log file without providing the name"
- << std::endl;);
+ << std::endl);
return false;
}
std::ostringstream ostr;