This commit is contained in:
Zach Mullen 2009-08-31 11:32:39 -04:00
parent 71ff183b5b
commit 6d0b6f2b9e

View File

@ -62,10 +62,20 @@ public:
virtual const char* GetFullDocumentation() virtual const char* GetFullDocumentation()
{ {
return return
" ctest_memcheck([BUILD build_dir] [RETURN_VALUE res] [APPEND])\n" " ctest_memcheck([BUILD build_dir] [RETURN_VALUE res] [APPEND]\n"
"Performs a memory checking of tests in the given build directory and " " [START start number] [END end number]\n"
"stores results in MemCheck.xml. The second argument is a variable " " [STRIDE stride number] [EXCLUDE exclude regex ]\n"
"that will hold value." " [INCLUDE include regex] \n"
" [EXCLUDE_LABEL exclude regex] \n"
" [INCLUDE_LABEL label regex] )\n"
"Tests the given build directory and stores results in MemCheck.xml. "
"The second argument is a variable that will hold value. Optionally, "
"you can specify the starting test number START, the ending test number "
"END, the number of tests to skip between each test STRIDE, a regular "
"expression for tests to run INCLUDE, or a regular expression for tests "
"not to run EXCLUDE. EXCLUDE_LABEL and INCLUDE_LABEL are regular "
"expressions for tests to be included or excluded by the test "
"property LABEL."
"\n" "\n"
CTEST_COMMAND_APPEND_OPTION_DOCS; CTEST_COMMAND_APPEND_OPTION_DOCS;
} }