Преглед изворни кода

Fix output compression error message

Zach Mullen пре 16 година
родитељ
комит
1842d2eae0
1 измењених фајлова са 1 додато и 2 уклоњено
  1. 1 2
      Source/CTest/cmCTestRunTest.cxx

+ 1 - 2
Source/CTest/cmCTestRunTest.cxx

@@ -91,7 +91,6 @@ void cmCTestRunTest::CompressOutput()
   ret = deflateInit(&strm, -1); //default compression level
   if (ret != Z_OK)
     {
-    //log deflate init error?
     return;
     }
 
@@ -103,7 +102,7 @@ void cmCTestRunTest::CompressOutput()
 
   if(ret == Z_STREAM_ERROR || ret != Z_STREAM_END)
     {
-    cmCTestLog(this->CTest, ERROR_MESSAGE, "Error initializing stream "
+    cmCTestLog(this->CTest, ERROR_MESSAGE, "Error during output "
       "compression. Sending uncompressed output." << std::endl);
     return;
     }