diff options
author | Christian Häggström <christian.haggstrom@orexplore.com> | 2023-01-03 19:33:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-01-11 20:52:37 (GMT) |
commit | 5e7a4ad1a11dbc0313792497431d6eef975ab789 (patch) | |
tree | ad24b5d381311991f916b1b2c8d4f7a1c812e73f /Source/CTest/cmCTestGenericHandler.cxx | |
parent | 51a0292d9cb24e13f6b600bc97d950ad4344cfa5 (diff) | |
download | CMake-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.cxx | 4 |
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; |