diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-09-02 14:08:40 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-09-02 14:08:40 (GMT) |
commit | 69fd641adb32c878ded4cadee60d90596b358d1b (patch) | |
tree | cd9885d9d8a0825b4a3bc227f78780ebf1a1e95b /Source/cmCTest.cxx | |
parent | 99144383cf17e188f67a5d9e3469bcf1b3a836b8 (diff) | |
download | CMake-69fd641adb32c878ded4cadee60d90596b358d1b.zip CMake-69fd641adb32c878ded4cadee60d90596b358d1b.tar.gz CMake-69fd641adb32c878ded4cadee60d90596b358d1b.tar.bz2 |
Fixed ctest output where max test index is not the same width as the total number of tests. Also some preliminary changes for batching ctest jobs
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index f1ad1a7..d06a4a7 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -211,6 +211,7 @@ cmCTest::cmCTest() this->ParallelLevel = 1; this->SubmitIndex = 0; this->Failover = false; + this->BatchJobs = false; this->ForceNewCTestProcess = false; this->TomorrowTag = false; this->Verbose = false; @@ -1745,6 +1746,10 @@ void cmCTest::HandleCommandLineArguments(size_t &i, { this->Verbose = true; } + if(this->CheckArgument(arg, "-B")) + { + this->BatchJobs = true; + } if(this->CheckArgument(arg, "-VV", "--extra-verbose")) { this->ExtraVerbose = true; |