diff options
author | Ken Martin <ken.martin@kitware.com> | 2004-11-13 14:55:31 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2004-11-13 14:55:31 (GMT) |
commit | 5a0366c6e0415294dde67b4bd2167d1cbf5d9ff1 (patch) | |
tree | 24585d0edb451644a77305b5362037bdcad75827 /Source/ctest.cxx | |
parent | 247c367a59552be299583cf77705709ae972a295 (diff) | |
download | CMake-5a0366c6e0415294dde67b4bd2167d1cbf5d9ff1.zip CMake-5a0366c6e0415294dde67b4bd2167d1cbf5d9ff1.tar.gz CMake-5a0366c6e0415294dde67b4bd2167d1cbf5d9ff1.tar.bz2 |
ENH: added -U option to take union of -R and -I
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r-- | Source/ctest.cxx | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index 3be9293..027927c 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -81,11 +81,15 @@ 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."}, + {"-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."}, + {"-U", "When both -R and -I are specified by default the intersection of " + "tests are run. By specifying -U the union of tests is run instead."}, {"--interactive-debug-mode [0|1]", "Set the interactive mode to 0 or 1.", "This option causes ctest to run tests in either an interactive mode or a non-interactive mode. " "On Windows this means that in non-interactive mode, all system debug pop up windows are blocked. " |