summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-12-11 19:10:37 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-12-11 19:10:37 (GMT)
commitb2e7da885d44c56c48a61d89a34f66b6f514e52e (patch)
treefebacfbcf3d90ebf499da879cf8321ebdae51be0 /Source/cmCTest.h
parent146cb98cb0d5d6f7348e8d7c3c9087c8b5aa49bc (diff)
downloadCMake-b2e7da885d44c56c48a61d89a34f66b6f514e52e.zip
CMake-b2e7da885d44c56c48a61d89a34f66b6f514e52e.tar.gz
CMake-b2e7da885d44c56c48a61d89a34f66b6f514e52e.tar.bz2
Added a "-http1.0" option to ctest to make it submit using curl's http 1.0 option. Also added parsing of html reponse output to determine whether errors or warnings were sent in response from the server. If errors or warnings occurred, the response is output to stdout, and the "submission successful" message has been changed to accurately reflect whether or not warnings or errors were returned with the response.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r--Source/cmCTest.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 299dbc8..983202a 100644
--- a/Source/cmCTest.h
+++ b/Source/cmCTest.h
@@ -193,6 +193,8 @@ public:
///! Should we only show what we would do?
bool GetShowOnly();
+ bool ShouldUseHTTP10() { return this->UseHTTP10; }
+
//Used for parallel ctest job scheduling
std::string GetScheduleType() { return this->ScheduleType; }
void SetScheduleType(std::string type) { this->ScheduleType = type; }
@@ -384,7 +386,7 @@ private:
bool ExtraVerbose;
bool ProduceXML;
bool LabelSummary;
-
+ bool UseHTTP10;
bool Failover;
bool BatchJobs;