summaryrefslogtreecommitdiffstats
path: root/Source/ctest.h
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-24 22:34:16 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2002-09-24 22:34:16 (GMT)
commit80f20047af31e35894b61afa11226dcab0b6a77b (patch)
tree040e9b69236523be3c728bc8dca652860efe6656 /Source/ctest.h
parentb5de000f26247b6a0be2ac429ead001cbe9da72e (diff)
downloadCMake-80f20047af31e35894b61afa11226dcab0b6a77b.zip
CMake-80f20047af31e35894b61afa11226dcab0b6a77b.tar.gz
CMake-80f20047af31e35894b61afa11226dcab0b6a77b.tar.bz2
Add verbose flag -V, which makes the output of tests to be displayed; also add help to ctest
Diffstat (limited to 'Source/ctest.h')
-rw-r--r--Source/ctest.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/ctest.h b/Source/ctest.h
index 50ae0bc..9664c62 100644
--- a/Source/ctest.h
+++ b/Source/ctest.h
@@ -38,9 +38,10 @@ public:
* constructor
*/
ctest() {
- m_UseIncludeRegExp = false;
- m_UseExcludeRegExp = false;
+ m_UseIncludeRegExp = false;
+ m_UseExcludeRegExp = false;
m_UseExcludeRegExpFirst = false;
+ m_Verbose = false;
}
bool m_UseIncludeRegExp;
@@ -51,6 +52,7 @@ public:
std::string m_ExcludeRegExp;
std::string m_ConfigType;
+ bool m_Verbose;
private:
};