diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-09-03 14:47:14 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-09-03 14:47:14 (GMT) |
commit | 659171d1f72e24c2cdda6a935f29f528cc518969 (patch) | |
tree | 20f254b0f953956ada7b475bb22ff7a72c1b352e /Source/CTest/cmCTestMemCheckCommand.h | |
parent | e3086213820a97db8432bf6089155509164fe960 (diff) | |
download | CMake-659171d1f72e24c2cdda6a935f29f528cc518969.zip CMake-659171d1f72e24c2cdda6a935f29f528cc518969.tar.gz CMake-659171d1f72e24c2cdda6a935f29f528cc518969.tar.bz2 |
ENH: Added PARALLEL_LEVEL option for ctest_memcheck(). Added PROCESSORS option to set_tests_properties (implementation to come).
Diffstat (limited to 'Source/CTest/cmCTestMemCheckCommand.h')
-rw-r--r-- | Source/CTest/cmCTestMemCheckCommand.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestMemCheckCommand.h b/Source/CTest/cmCTestMemCheckCommand.h index eeb1327..3e5cdd6 100644 --- a/Source/CTest/cmCTestMemCheckCommand.h +++ b/Source/CTest/cmCTestMemCheckCommand.h @@ -67,7 +67,8 @@ public: " [STRIDE stride number] [EXCLUDE exclude regex ]\n" " [INCLUDE include regex] \n" " [EXCLUDE_LABEL exclude regex] \n" - " [INCLUDE_LABEL label regex] )\n" + " [INCLUDE_LABEL label regex] \n" + " [PARALLEL_LEVEL level] )\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 " @@ -75,7 +76,8 @@ public: "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." + "property LABEL. PARALLEL_LEVEL should be set to a positive number " + "representing the number of tests to be run in parallel." "\n" CTEST_COMMAND_APPEND_OPTION_DOCS; } |