diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-24 22:34:16 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2002-09-24 22:34:16 (GMT) |
commit | 80f20047af31e35894b61afa11226dcab0b6a77b (patch) | |
tree | 040e9b69236523be3c728bc8dca652860efe6656 /Source/ctest.h | |
parent | b5de000f26247b6a0be2ac429ead001cbe9da72e (diff) | |
download | CMake-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.h | 6 |
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: }; |