diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2011-05-26 18:42:41 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2011-05-26 18:50:07 (GMT) |
commit | 9c3a0b9f140f8503bb177c97aadab26fbdded197 (patch) | |
tree | 9c52f3591f9e0eb2e9f2ec98f0230ebeffa8e0e7 /Source/cmCTest.h | |
parent | 8024c53389df3ef404725e3d0c5d91a8f7eafbfc (diff) | |
download | CMake-9c3a0b9f140f8503bb177c97aadab26fbdded197.zip CMake-9c3a0b9f140f8503bb177c97aadab26fbdded197.tar.gz CMake-9c3a0b9f140f8503bb177c97aadab26fbdded197.tar.bz2 |
We will actually compress memcheck output if the server supports it.
This change won't be functional until the next release of CDash due to the
version comparison.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 3b02748..44a5349 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -219,6 +219,8 @@ public: bool ShouldPrintLabels() { return this->PrintLabels; } bool ShouldCompressTestOutput(); + bool ShouldCompressMemCheckOutput(); + bool CompressString(std::string& str); std::string GetCDashVersion(); @@ -430,7 +432,8 @@ private: bool RunConfigurationScript; //flag for lazy getter (optimization) - bool ComputedCompressOutput; + bool ComputedCompressTestOutput; + bool ComputedCompressMemCheckOutput; int GenerateNotesFile(const char* files); @@ -487,8 +490,8 @@ private: bool ShortDateFormat; bool CompressXMLFiles; - bool CompressTestOutput; + bool CompressMemCheckOutput; void InitStreams(); std::ostream* StreamOut; |