diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-09-02 16:35:42 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-09-02 16:35:42 (GMT) |
commit | 7e20db0224571361d6d5f62fc58b12452bec826b (patch) | |
tree | b7f0fc10d4e82c0068a7ddffc087fb028fcd4168 /Source/CTest/cmCTestTestCommand.h | |
parent | 69fd641adb32c878ded4cadee60d90596b358d1b (diff) | |
download | CMake-7e20db0224571361d6d5f62fc58b12452bec826b.zip CMake-7e20db0224571361d6d5f62fc58b12452bec826b.tar.gz CMake-7e20db0224571361d6d5f62fc58b12452bec826b.tar.bz2 |
ENH: Added PARALLEL_LEVEL option to ctest_test() command.
Diffstat (limited to 'Source/CTest/cmCTestTestCommand.h')
-rw-r--r-- | Source/CTest/cmCTestTestCommand.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestTestCommand.h b/Source/CTest/cmCTestTestCommand.h index 3147637..f294e02 100644 --- a/Source/CTest/cmCTestTestCommand.h +++ b/Source/CTest/cmCTestTestCommand.h @@ -65,7 +65,8 @@ public: " [STRIDE stride number] [EXCLUDE exclude regex ]\n" " [INCLUDE include regex] [RETURN_VALUE res] \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 Test.xml. The " "second argument is a variable that will hold value. Optionally, " "you can specify the starting test number START, the ending test number " @@ -73,7 +74,8 @@ public: "expression for tests to run INCLUDE, or a regular expression for tests " "to not run EXCLUDE. EXCLUDE_LABEL and INCLUDE_LABEL are regular " "expression for test 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; } @@ -94,6 +96,7 @@ protected: ctt_INCLUDE, ctt_EXCLUDE_LABEL, ctt_INCLUDE_LABEL, + ctt_PARALLEL_LEVEL, ctt_LAST }; }; |