ENH: add docs for command line ctest
This commit is contained in:
parent
00c253847a
commit
d2bfac93f3
|
@ -80,6 +80,10 @@ static const char * cmDocumentationOptions[][3] =
|
||||||
{"-N,--show-only", "Disable actual execution of tests.",
|
{"-N,--show-only", "Disable actual execution of tests.",
|
||||||
"This option tells ctest to list the tests that would be run but not "
|
"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."},
|
"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 "
|
{"-R <regex>, --tests-regex <regex>", "Run tests matching regular "
|
||||||
"expression.",
|
"expression.",
|
||||||
"This option tells ctest to run only the tests whose names match the "
|
"This option tells ctest to run only the tests whose names match the "
|
||||||
|
@ -88,6 +92,10 @@ static const char * cmDocumentationOptions[][3] =
|
||||||
"expression.",
|
"expression.",
|
||||||
"This option tells ctest to NOT run the tests whose names match the "
|
"This option tells ctest to NOT run the tests whose names match the "
|
||||||
"given regular expression."},
|
"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",
|
{"-D <dashboard>, --dashboard <dashboard>", "Execute dashboard test",
|
||||||
"This option tells ctest to perform act as a Dart client and perform "
|
"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 "
|
"a dashboard test. All tests are <Mode><Test>, where Mode can be "
|
||||||
|
|
Loading…
Reference in New Issue