summaryrefslogtreecommitdiffstats
path: root/Source/ctest.h
diff options
context:
space:
mode:
authorSebastien Barre <sebastien.barre@kitware.com>2002-03-06 22:58:44 (GMT)
committerSebastien Barre <sebastien.barre@kitware.com>2002-03-06 22:58:44 (GMT)
commite64c63cc90e9875f41357174973a3930de470815 (patch)
tree4028a78137d1e1ce443daf88d0c0bbb17a2fcb7f /Source/ctest.h
parent3ed2e6d02b53c80062b464b48e0dd51370f2e1c0 (diff)
downloadCMake-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.h15
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:
};