diff options
author | Brad King <brad.king@kitware.com> | 2017-12-08 16:22:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-12-08 16:23:33 (GMT) |
commit | f984296ba8c663eba747454338d8839cdeb96421 (patch) | |
tree | 8597bb5d470dbc66aa5adea4d60b912b1e5a1d6b /Source/cmCTest.h | |
parent | d25bcab161bfccb43cbeb43dfe96c805e2c27530 (diff) | |
download | CMake-f984296ba8c663eba747454338d8839cdeb96421.zip CMake-f984296ba8c663eba747454338d8839cdeb96421.tar.gz CMake-f984296ba8c663eba747454338d8839cdeb96421.tar.bz2 |
CTest: Remove unfinished batch test mode
This was partially implemented by commit v2.8.0~154 (Added some ctest
batch capabilities, 2009-09-10) but never finished.
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index ba94866..44a6350 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -427,9 +427,6 @@ public: void SetFailover(bool failover) { this->Failover = failover; } bool GetFailover() { return this->Failover; } - void SetBatchJobs(bool batch = true) { this->BatchJobs = batch; } - bool GetBatchJobs() { return this->BatchJobs; } - bool GetVerbose() { return this->Verbose; } bool GetExtraVerbose() { return this->ExtraVerbose; } @@ -475,7 +472,6 @@ private: bool UseHTTP10; bool PrintLabels; bool Failover; - bool BatchJobs; bool ForceNewCTestProcess; |