diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2002-03-06 22:58:44 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2002-03-06 22:58:44 (GMT) |
commit | e64c63cc90e9875f41357174973a3930de470815 (patch) | |
tree | 4028a78137d1e1ce443daf88d0c0bbb17a2fcb7f /Source/ctest.h | |
parent | 3ed2e6d02b53c80062b464b48e0dd51370f2e1c0 (diff) | |
download | CMake-e64c63cc90e9875f41357174973a3930de470815.zip CMake-e64c63cc90e9875f41357174973a3930de470815.tar.gz CMake-e64c63cc90e9875f41357174973a3930de470815.tar.bz2 |
ENH: add -E option (exclude tests matching a regexp)
Diffstat (limited to 'Source/ctest.h')
-rw-r--r-- | Source/ctest.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/Source/ctest.h b/Source/ctest.h index eef6b28..60065a1 100644 --- a/Source/ctest.h +++ b/Source/ctest.h @@ -36,10 +36,19 @@ public: /** * constructor */ - ctest() {m_UseRegExp = false;} + ctest() { + m_UseIncludeRegExp = false; + m_UseExcludeRegExp = false; + m_UseExcludeRegExpFirst = false; + } + + bool m_UseIncludeRegExp; + std::string m_IncludeRegExp; + + bool m_UseExcludeRegExp; + bool m_UseExcludeRegExpFirst; + std::string m_ExcludeRegExp; - bool m_UseRegExp; - std::string m_RegExp; std::string m_ConfigType; private: }; |