summaryrefslogtreecommitdiffstats
path: root/Source/ctest.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2009-05-07 22:22:54 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2009-05-07 22:22:54 (GMT)
commitd2bfac93f3152eacd4add56c0a51f61765bcbc78 (patch)
treeb37f17280dd7b7dfcbb9f03c8edc7fc5006a2049 /Source/ctest.cxx
parent00c253847a06936ae7c0d397c52287179e505dc1 (diff)
downloadCMake-d2bfac93f3152eacd4add56c0a51f61765bcbc78.zip
CMake-d2bfac93f3152eacd4add56c0a51f61765bcbc78.tar.gz
CMake-d2bfac93f3152eacd4add56c0a51f61765bcbc78.tar.bz2
ENH: add docs for command line ctest
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r--Source/ctest.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index 112611b..7cf2bcd 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -80,6 +80,10 @@ static const char * cmDocumentationOptions[][3] =
{"-N,--show-only", "Disable actual execution of tests.",
"This option tells ctest to list the tests that would be run but not "
"actually run them. Useful in conjunction with the -R and -E options."},
+ {"-L <regex>, --label-regex <regex>", "Run tests with labels matching "
+ "regular expression.",
+ "This option tells ctest to run only the tests whose labels match the "
+ "given regular expression."},
{"-R <regex>, --tests-regex <regex>", "Run tests matching regular "
"expression.",
"This option tells ctest to run only the tests whose names match the "
@@ -88,6 +92,10 @@ static const char * cmDocumentationOptions[][3] =
"expression.",
"This option tells ctest to NOT run the tests whose names match the "
"given regular expression."},
+ {"-LE <regex>, --label-exclude <regex>", "Exclude tests with labels "
+ "matching regular expression.",
+ "This option tells ctest to NOT run the tests whose labels match the "
+ "given regular expression."},
{"-D <dashboard>, --dashboard <dashboard>", "Execute dashboard test",
"This option tells ctest to perform act as a Dart client and perform "
"a dashboard test. All tests are <Mode><Test>, where Mode can be "