|
|
@@ -61,7 +61,8 @@ public:
|
|
|
" [INCLUDE include regex] [RETURN_VALUE res] \n"
|
|
|
" [EXCLUDE_LABEL exclude regex] \n"
|
|
|
" [INCLUDE_LABEL label regex] \n"
|
|
|
- " [PARALLEL_LEVEL level]) \n"
|
|
|
+ " [PARALLEL_LEVEL level] \n"
|
|
|
+ " [SCHEDULE_RANDOM on]) \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 "
|
|
|
@@ -70,7 +71,9 @@ 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. PARALLEL_LEVEL should be set to a positive number "
|
|
|
- "representing the number of tests to be run in parallel."
|
|
|
+ "representing the number of tests to be run in parallel. "
|
|
|
+ "SCHEDULE_RANDOM will launch tests in a random order, and is "
|
|
|
+ "typically used to detect implicit test dependencies."
|
|
|
"\n"
|
|
|
CTEST_COMMAND_APPEND_OPTION_DOCS;
|
|
|
}
|
|
|
@@ -92,6 +95,7 @@ protected:
|
|
|
ctt_EXCLUDE_LABEL,
|
|
|
ctt_INCLUDE_LABEL,
|
|
|
ctt_PARALLEL_LEVEL,
|
|
|
+ ctt_SCHEDULE_RANDOM,
|
|
|
ctt_LAST
|
|
|
};
|
|
|
};
|