diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-12-17 16:17:57 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-12-17 16:17:57 (GMT) |
commit | 1842d2eae0468b3b1ad0b85ede2dc0dd28885a20 (patch) | |
tree | 4c9c0f1cadcf2a51ede2ede700c8bb1e00ca097f /Source/CTest/cmCTestRunTest.cxx | |
parent | ff916b48bda3f7083d7bad8dd23728161d8d820e (diff) | |
download | CMake-1842d2eae0468b3b1ad0b85ede2dc0dd28885a20.zip CMake-1842d2eae0468b3b1ad0b85ede2dc0dd28885a20.tar.gz CMake-1842d2eae0468b3b1ad0b85ede2dc0dd28885a20.tar.bz2 |
Fix output compression error message
Diffstat (limited to 'Source/CTest/cmCTestRunTest.cxx')
-rw-r--r-- | Source/CTest/cmCTestRunTest.cxx | 3 |
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; } |