summaryrefslogtreecommitdiff
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-12-16 14:50:16 -0500
committerZach Mullen <zach.mullen@kitware.com>2009-12-16 14:50:16 -0500
commit9add940eb6a23b32da6a86b857d05fed900fea74 (patch)
tree949d99f8fdc69b3194a021739859de2ce3ae0764 /Source/cmCTest.h
parent56fe170043548e42728105ada644941fc3ae978b (diff)
downloadcmake-9add940eb6a23b32da6a86b857d05fed900fea74.tar.gz
Added an option to conditionally attach files to a test submission only if the test does not pass. Also some preliminary changes for test output compression.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 983202a915..6fe1eb36d5 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -195,6 +195,8 @@ public:
bool ShouldUseHTTP10() { return this->UseHTTP10; }
+ bool ShouldCompressTestOutput() { return this->CompressTestOutput; }
+
//Used for parallel ctest job scheduling
std::string GetScheduleType() { return this->ScheduleType; }
void SetScheduleType(std::string type) { this->ScheduleType = type; }
@@ -446,6 +448,8 @@ private:
bool CompressXMLFiles;
+ bool CompressTestOutput;
+
void InitStreams();
std::ostream* StreamOut;
std::ostream* StreamErr;