summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestTestCommand.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2010-03-16 19:33:55 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2010-03-17 15:04:13 (GMT)
commit0ba9d041174f593509c44f84e0e70fafc6c0edc0 (patch)
treee14112a165cafec052faf1846d97a47acdb612b9 /Source/CTest/cmCTestTestCommand.h
parentbd0b37ea3d5733d087b1498a20e2b87d7f537a9f (diff)
downloadCMake-0ba9d041174f593509c44f84e0e70fafc6c0edc0.zip
CMake-0ba9d041174f593509c44f84e0e70fafc6c0edc0.tar.gz
CMake-0ba9d041174f593509c44f84e0e70fafc6c0edc0.tar.bz2
Add the --stop-time argument
Unit test and script hook for STOP_TIME
Diffstat (limited to 'Source/CTest/cmCTestTestCommand.h')
-rw-r--r--Source/CTest/cmCTestTestCommand.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestTestCommand.h b/Source/CTest/cmCTestTestCommand.h
index 12314df..c6fd631 100644
--- a/Source/CTest/cmCTestTestCommand.h
+++ b/Source/CTest/cmCTestTestCommand.h
@@ -62,7 +62,8 @@ public:
" [EXCLUDE_LABEL exclude regex] \n"
" [INCLUDE_LABEL label regex] \n"
" [PARALLEL_LEVEL level] \n"
- " [SCHEDULE_RANDOM on]) \n"
+ " [SCHEDULE_RANDOM on] \n"
+ " [STOP_TIME time of day]) \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:
"property LABEL. PARALLEL_LEVEL should be set to a positive number "
"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."
+ "typically used to detect implicit test dependencies. STOP_TIME is the "
+ "time of day at which the tests should all stop running."
"\n"
CTEST_COMMAND_APPEND_OPTION_DOCS;
}
@@ -96,6 +98,7 @@ protected:
ctt_INCLUDE_LABEL,
ctt_PARALLEL_LEVEL,
ctt_SCHEDULE_RANDOM,
+ ctt_STOP_TIME,
ctt_LAST
};
};