diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2010-06-15 14:29:35 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2010-06-15 14:29:35 (GMT) |
commit | 960dc2b10ff8651c5c7f1be566855c8440effd2b (patch) | |
tree | 8922f6d1865bd2c00e8aba0329451e58b7aaddd5 /Source/CTest/cmCTestRunTest.h | |
parent | d714b18ac5f415e15c5e03bf8f6aaeaf45e143f5 (diff) | |
download | CMake-960dc2b10ff8651c5c7f1be566855c8440effd2b.zip CMake-960dc2b10ff8651c5c7f1be566855c8440effd2b.tar.gz CMake-960dc2b10ff8651c5c7f1be566855c8440effd2b.tar.bz2 |
Do not exit if stoptime is passed.
Diffstat (limited to 'Source/CTest/cmCTestRunTest.h')
-rw-r--r-- | Source/CTest/cmCTestRunTest.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestRunTest.h b/Source/CTest/cmCTestRunTest.h index d7d3a2f..e0cb888 100644 --- a/Source/CTest/cmCTestRunTest.h +++ b/Source/CTest/cmCTestRunTest.h @@ -39,6 +39,8 @@ public: std::string GetProcessOutput() { return this->ProcessOutput; } + bool IsStopTimePassed() { return this->StopTimePassed; } + cmCTestTestHandler::cmCTestTestResult GetTestResults() { return this->TestResult; } @@ -90,6 +92,7 @@ private: std::string TestCommand; std::string ActualCommand; std::vector<std::string> Arguments; + bool StopTimePassed; }; inline int getNumWidth(size_t n) |