CTest: Fix line-too-long style in DEPEND cycle error

This commit is contained in:
Brad King 2010-12-16 08:07:43 -05:00
parent f48d3bc5ba
commit 1f7133cd61
1 changed files with 4 additions and 4 deletions

View File

@ -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