diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-07-26 19:52:10 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-07-26 19:52:10 (GMT) |
commit | fd50bc476c8995084b2339fad6e37be09a211850 (patch) | |
tree | 098dd1387b8d48fc6b28c55533beeff92b1f01d9 /Source/cmCTest.h | |
parent | 67d3634e46d5948d381fccd76913947f1921d91b (diff) | |
download | CMake-fd50bc476c8995084b2339fad6e37be09a211850.zip CMake-fd50bc476c8995084b2339fad6e37be09a211850.tar.gz CMake-fd50bc476c8995084b2339fad6e37be09a211850.tar.bz2 |
ENH: Add maximum size of test output
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 f8075f4..24ec541 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -424,6 +424,10 @@ private: ///! Get the current time as string std::string CurrentTime(); + + ///! Maximum size of testing string + std::string::size_type m_MaximumPassedTestResultSize; + std::string::size_type m_MaximumFailedTestResultSize; }; #endif |