summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestMultiProcessHandler.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2010-12-16 13:07:43 (GMT)
committerBrad King <brad.king@kitware.com>2010-12-16 13:07:43 (GMT)
commit1f7133cd61c88bbb60e5695312c91c7a3238a707 (patch)
treedbcf9b830a05704bcb1e441ae8adce433a3fb25f /Source/CTest/cmCTestMultiProcessHandler.cxx
parentf48d3bc5ba69906ee3c61ddb103a91bf6467c86d (diff)
downloadCMake-1f7133cd61c88bbb60e5695312c91c7a3238a707.zip
CMake-1f7133cd61c88bbb60e5695312c91c7a3238a707.tar.gz
CMake-1f7133cd61c88bbb60e5695312c91c7a3238a707.tar.bz2
CTest: Fix line-too-long style in DEPEND cycle error
Diffstat (limited to 'Source/CTest/cmCTestMultiProcessHandler.cxx')
-rw-r--r--Source/CTest/cmCTestMultiProcessHandler.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestMultiProcessHandler.cxx b/Source/CTest/cmCTestMultiProcessHandler.cxx
index ca26c98..94614cf 100644
--- a/Source/CTest/cmCTestMultiProcessHandler.cxx
+++ b/Source/CTest/cmCTestMultiProcessHandler.cxx
@@ -669,10 +669,10 @@ bool cmCTestMultiProcessHandler::CheckCycles()
if(*d == root)
{
//cycle exists
- cmCTestLog(this->CTest, ERROR_MESSAGE, "Error: a cycle exists in "
- "the test dependency graph for the test \""
- << this->Properties[root]->Name << "\"." << std::endl
- << "Please fix the cycle and run ctest again." << std::endl);
+ cmCTestLog(this->CTest, ERROR_MESSAGE,
+ "Error: a cycle exists in the test dependency graph "
+ "for the test \"" << this->Properties[root]->Name <<
+ "\".\nPlease fix the cycle and run ctest again.\n");
return false;
}
else