diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-01-26 16:13:12 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-01-26 16:13:12 (GMT) |
commit | f6cd83d6f3dfad07cedf82e96eb371fa264abef2 (patch) | |
tree | ac03f9801cd8e5510daeb18a43f7db02827e3acd /Source/CTest/cmCTestTestHandler.h | |
parent | f7063fc6612ad461e0d1a6dbc5a6da2366c0812e (diff) | |
download | CMake-f6cd83d6f3dfad07cedf82e96eb371fa264abef2.zip CMake-f6cd83d6f3dfad07cedf82e96eb371fa264abef2.tar.gz CMake-f6cd83d6f3dfad07cedf82e96eb371fa264abef2.tar.bz2 |
ENH: Add support for shrinking the output of the test
Diffstat (limited to 'Source/CTest/cmCTestTestHandler.h')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h index 4bca7d0..1c417a2 100644 --- a/Source/CTest/cmCTestTestHandler.h +++ b/Source/CTest/cmCTestTestHandler.h @@ -189,6 +189,9 @@ private: std::vector<cmStdString> m_CustomTestsIgnore; std::vector<cmStdString> m_CustomMemCheckIgnore; + int m_CustomMaximumPassedTestOutputSize; + int m_CustomMaximumFailedTestOutputSize; + std::string m_StartTest; std::string m_EndTest; double m_ElapsedTestingTime; @@ -212,6 +215,9 @@ private: bool ProcessMemCheckPurifyOutput(const std::string& str, std::string& log, int* results); + //! Clean test output to specified length + bool CleanTestOutput(std::string& output, size_t length); + std::string TestsToRunString; bool m_UseUnion; }; |