瀏覽代碼

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

Brad King 15 年之前
父節點
當前提交
1f7133cd61
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      Source/CTest/cmCTestMultiProcessHandler.cxx

+ 4 - 4
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