diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-08 17:47:20 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-05-08 17:47:20 (GMT) |
commit | 4e49c3bf6e6782f961153732a8fe1258fc7e7f2f (patch) | |
tree | 2525a9c0b72de528103626fae9b7a50938d56824 /Source/cmCTest.h | |
parent | 26e8ff9ab6b62ca6ea69e1dec5f313a1645b5db7 (diff) | |
download | CMake-4e49c3bf6e6782f961153732a8fe1258fc7e7f2f.zip CMake-4e49c3bf6e6782f961153732a8fe1258fc7e7f2f.tar.gz CMake-4e49c3bf6e6782f961153732a8fe1258fc7e7f2f.tar.bz2 |
ENH: Add method so that ctest handlers and commands can add notes
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 0c40497..b3996ff 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -196,6 +196,16 @@ public: //! Make string safe to be send as an URL static std::string MakeURLSafe(const std::string&); + + //! Should ctect configuration be updated. When using new style ctest script, + // this should be true. + void SetSuppressUpdatingCTestConfiguration(bool val) + { + m_SuppressUpdatingCTestConfiguration = val; + } + + //! Create XML file that contains all the notes specified + int GenerateNotesFile(const std::vector<cmStdString> &files); private: std::string m_ConfigType; bool m_Verbose; @@ -291,6 +301,7 @@ private: ///! Find the running cmake void FindRunningCMake(const char* arg0); + bool m_SuppressUpdatingCTestConfiguration; }; #endif |