diff options
author | Brad King <brad.king@kitware.com> | 2014-09-02 14:43:21 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-09-02 14:43:21 (GMT) |
commit | 3338b2c3c86d67a0624c3c5911a3cd70a8ae3925 (patch) | |
tree | f7f80e708904db72bccb8a6aed27a88a93d4bac0 | |
parent | 85e39553fb5edda649e33896b0cf1aa70ec1ae4c (diff) | |
parent | 6767660f2c907840ad7ecd959f111e9ddb14b43b (diff) | |
download | CMake-3338b2c3c86d67a0624c3c5911a3cd70a8ae3925.zip CMake-3338b2c3c86d67a0624c3c5911a3cd70a8ae3925.tar.gz CMake-3338b2c3c86d67a0624c3c5911a3cd70a8ae3925.tar.bz2 |
Merge topic 'ctest-help-fix'
6767660f CTest: Add missing space in command line help.
-rw-r--r-- | Source/ctest.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx index ff32de9..2c72b4d 100644 --- a/Source/ctest.cxx +++ b/Source/ctest.cxx @@ -48,7 +48,7 @@ static const char * cmDocumentationOptions[][2] = {"--output-on-failure", "Output anything outputted by the test program " "if the test should fail."}, {"-F", "Enable failover."}, - {"-j <jobs>, --parallel <jobs>", "Run the tests in parallel using the" + {"-j <jobs>, --parallel <jobs>", "Run the tests in parallel using the " "given number of jobs."}, {"-Q,--quiet", "Make ctest quiet."}, {"-O <file>, --output-log <file>", "Output to log file"}, @@ -98,7 +98,7 @@ static const char * cmDocumentationOptions[][2] = {"--test-timeout", "The time limit in seconds, internal use only."}, {"--tomorrow-tag", "Nightly or experimental starts with next day tag."}, {"--ctest-config", "The configuration file used to initialize CTest state " - "when submitting dashboards."}, + "when submitting dashboards."}, {"--overwrite", "Overwrite CTest configuration option."}, {"--extra-submit <file>[;<file>]", "Submit extra files to the dashboard."}, {"--force-new-ctest-process", "Run child CTest instances as new processes"}, |