summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestRunTest.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-09-03 19:33:44 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-09-03 19:33:44 (GMT)
commitd4adde13d7d507f5896b8c7912e46bbbcb71b539 (patch)
tree45e30f838f6443a50c276be0f0507ee392020799 /Source/CTest/cmCTestRunTest.h
parentf686dbecb6c25178954b8190e95a3a265e9b2813 (diff)
downloadCMake-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.h2
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: