summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2011-02-28 20:26:24 (GMT)
committerBrad King <brad.king@kitware.com>2011-03-15 19:07:37 (GMT)
commit28cdd0a5be086004e5afedbbe5adb61be7adc9cc (patch)
tree13d6dc3b8b17b8a3af0d8d14995a6ccb634715d6 /Source/CTest
parentfbe435652d97a16911d418ad6dd0b455905256ca (diff)
downloadCMake-28cdd0a5be086004e5afedbbe5adb61be7adc9cc.zip
CMake-28cdd0a5be086004e5afedbbe5adb61be7adc9cc.tar.gz
CMake-28cdd0a5be086004e5afedbbe5adb61be7adc9cc.tar.bz2
Don't tar/gz ctest_upload() files
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestUploadHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestUploadHandler.cxx b/Source/CTest/cmCTestUploadHandler.cxx
index 4d1cf42..caf2e53 100644
--- a/Source/CTest/cmCTestUploadHandler.cxx
+++ b/Source/CTest/cmCTestUploadHandler.cxx
@@ -66,8 +66,8 @@ int cmCTestUploadHandler::ProcessHandler()
cmCTestLog(this->CTest, OUTPUT,
"\tUpload file: " << it->c_str() << std::endl);
ofs << "<File filename=\"" << cmXMLSafe(*it) << "\">\n"
- << "<Content compression=\"tar/gzip\" encoding=\"base64\">\n";
- ofs << this->CTest->Base64GzipEncodeFile(*it);
+ << "<Content encoding=\"base64\">\n";
+ ofs << this->CTest->Base64EncodeFile(*it);
ofs << "\n</Content>\n"
<< "</File>\n";
}