diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-09-03 19:33:44 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-09-03 19:33:44 (GMT) |
commit | d4adde13d7d507f5896b8c7912e46bbbcb71b539 (patch) | |
tree | 45e30f838f6443a50c276be0f0507ee392020799 /Source/CTest/cmCTestRunTest.h | |
parent | f686dbecb6c25178954b8190e95a3a265e9b2813 (diff) | |
download | CMake-d4adde13d7d507f5896b8c7912e46bbbcb71b539.zip CMake-d4adde13d7d507f5896b8c7912e46bbbcb71b539.tar.gz CMake-d4adde13d7d507f5896b8c7912e46bbbcb71b539.tar.bz2 |
Allowed tests to pull more than one line of output in their quantum. Fixed uninitialized variables in the case that the test process could not start.
Diffstat (limited to 'Source/CTest/cmCTestRunTest.h')
-rw-r--r-- | Source/CTest/cmCTestRunTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestRunTest.h b/Source/CTest/cmCTestRunTest.h index 8248b17..2895dbb 100644 --- a/Source/CTest/cmCTestRunTest.h +++ b/Source/CTest/cmCTestRunTest.h @@ -56,7 +56,7 @@ public: //launch the test process, return whether it started correctly bool StartTest(); //capture and report the test results - bool EndTest(size_t completed, size_t total); + bool EndTest(size_t completed, size_t total, bool started); //Called by ctest -N to log the command string void ComputeArguments(); private: |