From 1f7133cd61c88bbb60e5695312c91c7a3238a707 Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 16 Dec 2010 08:07:43 -0500 Subject: [PATCH] CTest: Fix line-too-long style in DEPEND cycle error --- Source/CTest/cmCTestMultiProcessHandler.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/CTest/cmCTestMultiProcessHandler.cxx b/Source/CTest/cmCTestMultiProcessHandler.cxx index ca26c9821..94614cfc6 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