summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestTestCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-02-20 20:51:03 (GMT)
committerBrad King <brad.king@kitware.com>2009-02-20 20:51:03 (GMT)
commit31e652059a1ccd86fb6ae26036bb0714e55fd2bb (patch)
treecdaf95429ff156646d73dd93341919f5b893895b /Source/CTest/cmCTestTestCommand.h
parentab1b9b45ff0940e37fe31380957ef970a70350bf (diff)
downloadCMake-31e652059a1ccd86fb6ae26036bb0714e55fd2bb.zip
CMake-31e652059a1ccd86fb6ae26036bb0714e55fd2bb.tar.gz
CMake-31e652059a1ccd86fb6ae26036bb0714e55fd2bb.tar.bz2
ENH: Document APPEND option in ctest_* commands
This adds documentation of the APPEND option to the configure, build, test, memcheck, and coverage commands. The docs leave specific semantics for the dashboard server to define.
Diffstat (limited to 'Source/CTest/cmCTestTestCommand.h')
-rw-r--r--Source/CTest/cmCTestTestCommand.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestTestCommand.h b/Source/CTest/cmCTestTestCommand.h
index 4a65faa..3147637 100644
--- a/Source/CTest/cmCTestTestCommand.h
+++ b/Source/CTest/cmCTestTestCommand.h
@@ -60,7 +60,7 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " ctest_test([BUILD build_dir]\n"
+ " ctest_test([BUILD build_dir] [APPEND]\n"
" [START start number] [END end number]\n"
" [STRIDE stride number] [EXCLUDE exclude regex ]\n"
" [INCLUDE include regex] [RETURN_VALUE res] \n"
@@ -74,7 +74,8 @@ public:
"to not run EXCLUDE. EXCLUDE_LABEL and INCLUDE_LABEL are regular "
"expression for test to be included or excluded by the test "
"property LABEL."
- ;
+ "\n"
+ CTEST_COMMAND_APPEND_OPTION_DOCS;
}
cmTypeMacro(cmCTestTestCommand, cmCTestHandlerCommand);