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/CTest/cmCTestTestHandler.h | |
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/CTest/cmCTestTestHandler.h')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h index 4c7cbc8..12e86a9 100644 --- a/Source/CTest/cmCTestTestHandler.h +++ b/Source/CTest/cmCTestTestHandler.h @@ -59,6 +59,8 @@ public: void SetIncludeRegExp(const char *); void SetExcludeRegExp(const char *); + void SetMaxIndex(int n) {this->MaxIndex = n;} + int GetMaxIndex() {return this->MaxIndex;} ///! pass the -I argument down void SetTestsToRunInformation(const char*); @@ -157,6 +159,7 @@ protected: bool MemCheck; int CustomMaximumPassedTestOutputSize; int CustomMaximumFailedTestOutputSize; + int MaxIndex; public: enum { // Program statuses NOT_RUN = 0, |