COMP: Make members protected so that subclass can use them
This commit is contained in:
parent
867e41d23b
commit
124860a9ee
@ -107,6 +107,9 @@ protected:
|
|||||||
virtual void GenerateTestCommand(std::vector<const char*>& args);
|
virtual void GenerateTestCommand(std::vector<const char*>& args);
|
||||||
int ExecuteCommands(std::vector<cmStdString>& vec);
|
int ExecuteCommands(std::vector<cmStdString>& vec);
|
||||||
|
|
||||||
|
//! Clean test output to specified length
|
||||||
|
bool CleanTestOutput(std::string& output, size_t length);
|
||||||
|
|
||||||
double ElapsedTestingTime;
|
double ElapsedTestingTime;
|
||||||
|
|
||||||
typedef std::vector<cmCTestTestResult> TestResultsVector;
|
typedef std::vector<cmCTestTestResult> TestResultsVector;
|
||||||
@ -116,6 +119,9 @@ protected:
|
|||||||
std::string StartTest;
|
std::string StartTest;
|
||||||
std::string EndTest;
|
std::string EndTest;
|
||||||
bool MemCheck;
|
bool MemCheck;
|
||||||
|
int CustomMaximumPassedTestOutputSize;
|
||||||
|
int CustomMaximumFailedTestOutputSize;
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum { // Program statuses
|
enum { // Program statuses
|
||||||
@ -161,9 +167,6 @@ private:
|
|||||||
std::vector<cmStdString> CustomPreTest;
|
std::vector<cmStdString> CustomPreTest;
|
||||||
std::vector<cmStdString> CustomPostTest;
|
std::vector<cmStdString> CustomPostTest;
|
||||||
|
|
||||||
int CustomMaximumPassedTestOutputSize;
|
|
||||||
int CustomMaximumFailedTestOutputSize;
|
|
||||||
|
|
||||||
std::vector<int> TestsToRun;
|
std::vector<int> TestsToRun;
|
||||||
|
|
||||||
bool UseIncludeRegExpFlag;
|
bool UseIncludeRegExpFlag;
|
||||||
@ -176,9 +179,6 @@ private:
|
|||||||
|
|
||||||
std::string GenerateRegressionImages(const std::string& xml);
|
std::string GenerateRegressionImages(const std::string& xml);
|
||||||
|
|
||||||
//! Clean test output to specified length
|
|
||||||
bool CleanTestOutput(std::string& output, size_t length);
|
|
||||||
|
|
||||||
std::string TestsToRunString;
|
std::string TestsToRunString;
|
||||||
bool UseUnion;
|
bool UseUnion;
|
||||||
ListOfTests TestList;
|
ListOfTests TestList;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user