diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-16 16:34:58 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-03-16 16:34:58 (GMT) |
commit | 124860a9eee6a37774839a30b68f454605f3fc9f (patch) | |
tree | e4a773da986ee315f13b6ea6f4798ec71f8cd5a9 | |
parent | 867e41d23b34854a7b8149a86e291e0233274992 (diff) | |
download | CMake-124860a9eee6a37774839a30b68f454605f3fc9f.zip CMake-124860a9eee6a37774839a30b68f454605f3fc9f.tar.gz CMake-124860a9eee6a37774839a30b68f454605f3fc9f.tar.bz2 |
COMP: Make members protected so that subclass can use them
-rw-r--r-- | Source/CTest/cmCTestTestHandler.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h index 9942396..c1d3c8f 100644 --- a/Source/CTest/cmCTestTestHandler.h +++ b/Source/CTest/cmCTestTestHandler.h @@ -107,6 +107,9 @@ protected: virtual void GenerateTestCommand(std::vector<const char*>& args); int ExecuteCommands(std::vector<cmStdString>& vec); + //! Clean test output to specified length + bool CleanTestOutput(std::string& output, size_t length); + double ElapsedTestingTime; typedef std::vector<cmCTestTestResult> TestResultsVector; @@ -116,6 +119,9 @@ protected: std::string StartTest; std::string EndTest; bool MemCheck; + int CustomMaximumPassedTestOutputSize; + int CustomMaximumFailedTestOutputSize; + private: enum { // Program statuses @@ -161,9 +167,6 @@ private: std::vector<cmStdString> CustomPreTest; std::vector<cmStdString> CustomPostTest; - int CustomMaximumPassedTestOutputSize; - int CustomMaximumFailedTestOutputSize; - std::vector<int> TestsToRun; bool UseIncludeRegExpFlag; @@ -176,9 +179,6 @@ private: std::string GenerateRegressionImages(const std::string& xml); - //! Clean test output to specified length - bool CleanTestOutput(std::string& output, size_t length); - std::string TestsToRunString; bool UseUnion; ListOfTests TestList; |