diff options
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 6fe457b..6f740c9 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -109,13 +109,18 @@ public: { m_TestModel = mode; } + std::string GetTestModelString(); + static int GetTestModelFromString(const char* str); /** * constructor */ cmCTest(); + //! Set the notes files to be created. + void SetNotesFiles(const char* notes); + bool m_UseIncludeRegExp; std::string m_IncludeRegExp; @@ -284,6 +289,11 @@ private: int m_CompatibilityMode; + std::string m_NotesFiles; + + //! Reread the configuration file + void UpdateCTestConfiguration(); + /** * Generate the Dart compatible output */ |