summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestSubmitCommand.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2010-06-03 14:34:34 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2010-06-03 14:34:34 (GMT)
commite525649a4e9f2578c41593b56f9af4b4b7719984 (patch)
tree46092e3926a2ff9bee3a2038f495fc0992e8635f /Source/CTest/cmCTestSubmitCommand.h
parent7f619608d50cabee8718d78427d560531a3b1ea1 (diff)
downloadCMake-e525649a4e9f2578c41593b56f9af4b4b7719984.zip
CMake-e525649a4e9f2578c41593b56f9af4b4b7719984.tar.gz
CMake-e525649a4e9f2578c41593b56f9af4b4b7719984.tar.bz2
Checksums on CTest submit files, and retry timed out submissions.
Diffstat (limited to 'Source/CTest/cmCTestSubmitCommand.h')
-rw-r--r--Source/CTest/cmCTestSubmitCommand.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestSubmitCommand.h b/Source/CTest/cmCTestSubmitCommand.h
index ccaef7e..14dfa37 100644
--- a/Source/CTest/cmCTestSubmitCommand.h
+++ b/Source/CTest/cmCTestSubmitCommand.h
@@ -29,6 +29,8 @@ public:
{
this->PartsMentioned = false;
this->FilesMentioned = false;
+ this->RetryCount = "";
+ this->RetryDelay = "";
}
/**
@@ -92,6 +94,8 @@ protected:
{
ArgumentDoingParts = Superclass::ArgumentDoingLast1,
ArgumentDoingFiles,
+ ArgumentDoingRetryDelay,
+ ArgumentDoingRetryCount,
ArgumentDoingLast2
};
@@ -99,6 +103,8 @@ protected:
std::set<cmCTest::Part> Parts;
bool FilesMentioned;
cmCTest::SetOfStrings Files;
+ std::string RetryCount;
+ std::string RetryDelay;
};