ENH: Add new ctest command
This commit is contained in:
parent
2b197edb8a
commit
fb9eedc187
|
@ -247,6 +247,7 @@ SET(CMTEST_SRCS cmCTest.cxx
|
|||
CTest/cmCTestHandlerCommand.cxx
|
||||
CTest/cmCTestMemCheckCommand.cxx
|
||||
CTest/cmCTestMemCheckHandler.cxx
|
||||
CTest/cmCTestReadCustomFilesCommand.cxx
|
||||
CTest/cmCTestRunScriptCommand.cxx
|
||||
CTest/cmCTestScriptHandler.cxx
|
||||
CTest/cmCTestSleepCommand.cxx
|
||||
|
|
|
@ -290,6 +290,9 @@ public:
|
|||
void AddSubmitFile(const char* name);
|
||||
SetOfStrings* GetSubmitFiles() { return &this->SubmitFiles; }
|
||||
|
||||
//! Read the custom configuration files and apply them to the current ctest
|
||||
int ReadCustomConfigurationFileTree(const char* dir);
|
||||
|
||||
private:
|
||||
std::string ConfigType;
|
||||
bool Verbose;
|
||||
|
@ -348,8 +351,6 @@ private:
|
|||
std::string NotesFiles;
|
||||
|
||||
|
||||
int ReadCustomConfigurationFileTree(const char* dir);
|
||||
|
||||
bool InteractiveDebugMode;
|
||||
|
||||
bool ShortDateFormat;
|
||||
|
|
Loading…
Reference in New Issue