diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-13 20:32:29 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2004-04-13 20:32:29 (GMT) |
commit | b1032dd8e1579bc38758e066fedbe7524446fdad (patch) | |
tree | 3339d9960ca687cab47d088e91535eef0451c01c /Source/ctest.cxx | |
parent | 96d04f05d96d8a55472b76f59da675f33b3f182a (diff) | |
download | CMake-b1032dd8e1579bc38758e066fedbe7524446fdad.zip CMake-b1032dd8e1579bc38758e066fedbe7524446fdad.tar.gz CMake-b1032dd8e1579bc38758e066fedbe7524446fdad.tar.bz2 |
ENH: add the ability to run a limited sub-set of the tests
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 07b61cf..0b3b7be 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -81,6 +81,11 @@ static const cmDocumentationEntry cmDocumentationOptions[] = "appropriate options."}, {"-A <Notes file>", "Add a notes file with submission", "This option tells ctest to include a notes file when submitting dashboard. "}, + {"-I [Start,End,Stride,test#,test#|Test file]", "Run a specific number of tests by number.", + "This option causes ctest to run tests starting at number Start, ending at number End, " + "and incrementing by Stride. Any additional numbers after Stride are considered individual " + "test numbers. Start, End,or stride can be empty. Optionally a file can be given that contains " + "the same syntax as the command line."}, {0,0,0} }; |