summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSubmitCommand.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2010-06-03 17:27:26 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2010-06-03 17:27:26 (GMT)
commit082c87e5287e75e65a75d7588c40508f12e18632 (patch)
treec4227d639965b8023bcd335371688901dba1646e /Source/CTest/cmCTestSubmitCommand.h
parente525649a4e9f2578c41593b56f9af4b4b7719984 (diff)
downloadCMake-082c87e5287e75e65a75d7588c40508f12e18632.zip
CMake-082c87e5287e75e65a75d7588c40508f12e18632.tar.gz
CMake-082c87e5287e75e65a75d7588c40508f12e18632.tar.bz2
Cross-platform fixes for checksum/retry code
Diffstat (limited to 'Source/CTest/cmCTestSubmitCommand.h')
-rw-r--r--Source/CTest/cmCTestSubmitCommand.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestSubmitCommand.h b/Source/CTest/cmCTestSubmitCommand.h
index 14dfa37..5a80b45 100644
--- a/Source/CTest/cmCTestSubmitCommand.h
+++ b/Source/CTest/cmCTestSubmitCommand.h
@@ -63,7 +63,8 @@ public:
virtual const char* GetFullDocumentation()
{
return
- " ctest_submit([PARTS ...] [FILES ...] [RETURN_VALUE res])\n"
+ " ctest_submit([PARTS ...] [FILES ...] [RETRY_COUNT count] "
+ " [RETRY_DELAY delay][RETURN_VALUE res])\n"
"By default all available parts are submitted if no PARTS or FILES "
"are specified. "
"The PARTS option lists a subset of parts to be submitted. "
@@ -79,7 +80,11 @@ public:
" ExtraFiles = Files listed by CTEST_EXTRA_SUBMIT_FILES\n"
" Submit = nothing\n"
"The FILES option explicitly lists specific files to be submitted. "
- "Each individual file must exist at the time of the call.\n";
+ "Each individual file must exist at the time of the call.\n"
+ "The RETRY_DELAY option specifies how long in seconds to wait after "
+ "a timed-out submission before attempting to re-submit.\n"
+ "The RETRY_COUNT option specifies how many times to retry a timed-out "
+ "submission.\n";
}
cmTypeMacro(cmCTestSubmitCommand, cmCTestHandlerCommand);