COMP: Make members protected so that subclass can use them

This commit is contained in:
Andy Cedilnik 2006-03-16 11:34:58 -05:00
parent 867e41d23b
commit 124860a9ee
1 changed files with 6 additions and 6 deletions

View File

@ -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;