CTest: Fix line-too-long style in DEPEND cycle error
This commit is contained in:
parent
f48d3bc5ba
commit
1f7133cd61
|
@ -669,10 +669,10 @@ bool cmCTestMultiProcessHandler::CheckCycles()
|
||||||
if(*d == root)
|
if(*d == root)
|
||||||
{
|
{
|
||||||
//cycle exists
|
//cycle exists
|
||||||
cmCTestLog(this->CTest, ERROR_MESSAGE, "Error: a cycle exists in "
|
cmCTestLog(this->CTest, ERROR_MESSAGE,
|
||||||
"the test dependency graph for the test \""
|
"Error: a cycle exists in the test dependency graph "
|
||||||
<< this->Properties[root]->Name << "\"." << std::endl
|
"for the test \"" << this->Properties[root]->Name <<
|
||||||
<< "Please fix the cycle and run ctest again." << std::endl);
|
"\".\nPlease fix the cycle and run ctest again.\n");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue