summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-12-17 16:17:57 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-12-17 16:17:57 (GMT)
commit1842d2eae0468b3b1ad0b85ede2dc0dd28885a20 (patch)
tree4c9c0f1cadcf2a51ede2ede700c8bb1e00ca097f /Source/CTest
parentff916b48bda3f7083d7bad8dd23728161d8d820e (diff)
downloadCMake-1842d2eae0468b3b1ad0b85ede2dc0dd28885a20.zip
CMake-1842d2eae0468b3b1ad0b85ede2dc0dd28885a20.tar.gz
CMake-1842d2eae0468b3b1ad0b85ede2dc0dd28885a20.tar.bz2
Fix output compression error message
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestRunTest.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestRunTest.cxx b/Source/CTest/cmCTestRunTest.cxx
index 5342489..abeea47 100644
--- a/Source/CTest/cmCTestRunTest.cxx
+++ b/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;
}