diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-08-28 15:08:39 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-08-28 15:08:39 (GMT) |
commit | b427d1985e76f1e3362056107670aba2a223346d (patch) | |
tree | 8a5cc05f08e23252f493f9f4d11f995e7f7713f5 /Source/CTest/cmCTestMultiProcessHandler.h | |
parent | 00ca78108801277b95a59b519ac9b8cd43f1227a (diff) | |
download | CMake-b427d1985e76f1e3362056107670aba2a223346d.zip CMake-b427d1985e76f1e3362056107670aba2a223346d.tar.gz CMake-b427d1985e76f1e3362056107670aba2a223346d.tar.bz2 |
Added ctest -N test. Fixed ctest working directory bug. MemCheck fix coming soon...
Diffstat (limited to 'Source/CTest/cmCTestMultiProcessHandler.h')
-rw-r--r-- | Source/CTest/cmCTestMultiProcessHandler.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestMultiProcessHandler.h b/Source/CTest/cmCTestMultiProcessHandler.h index 3a47a36..cb3aecb 100644 --- a/Source/CTest/cmCTestMultiProcessHandler.h +++ b/Source/CTest/cmCTestMultiProcessHandler.h @@ -40,7 +40,7 @@ public: // Set the max number of tests that can be run at the same time. void SetParallelLevel(size_t); void RunTests(); - void PrintTests(); + void PrintTestList(); //void SetCTestCommand(const char* c) { this->CTestCommand = c;} //void SetTestCacheFile(const char* c) { this->CTestCacheFile = c;} void SetPassFailVectors(std::vector<cmStdString>* passed, @@ -80,6 +80,10 @@ protected: void CheckResume(); // map from test number to set of depend tests TestMap Tests; + //Total number of tests we'll be running + int Total; + //Number of tests that are complete + int Completed; //list of test properties (indices concurrent to the test map) PropertiesMap Properties; std::map<int, bool> TestRunningMap; |