diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-12-16 19:50:16 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-12-16 19:50:16 (GMT) |
commit | 9add940eb6a23b32da6a86b857d05fed900fea74 (patch) | |
tree | 949d99f8fdc69b3194a021739859de2ce3ae0764 /Source/cmCTest.h | |
parent | 56fe170043548e42728105ada644941fc3ae978b (diff) | |
download | CMake-9add940eb6a23b32da6a86b857d05fed900fea74.zip CMake-9add940eb6a23b32da6a86b857d05fed900fea74.tar.gz CMake-9add940eb6a23b32da6a86b857d05fed900fea74.tar.bz2 |
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.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 983202a..6fe1eb3 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; |