summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestRunTest.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-08-31 13:50:35 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-08-31 13:50:35 (GMT)
commit5a5cc522309a21cda8449912f457282f941641e1 (patch)
tree838420fab50ac0080a4ad2ff08193c731642f9ce /Source/CTest/cmCTestRunTest.h
parentbf830eea5efd1fc4e15b8b30e295f1da5e3aa2b0 (diff)
downloadCMake-5a5cc522309a21cda8449912f457282f941641e1.zip
CMake-5a5cc522309a21cda8449912f457282f941641e1.tar.gz
CMake-5a5cc522309a21cda8449912f457282f941641e1.tar.bz2
Fixed conversion warning on 64 bit machines
Diffstat (limited to 'Source/CTest/cmCTestRunTest.h')
-rw-r--r--Source/CTest/cmCTestRunTest.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestRunTest.h b/Source/CTest/cmCTestRunTest.h
index 1fbe5bb..88a4d6b 100644
--- a/Source/CTest/cmCTestRunTest.h
+++ b/Source/CTest/cmCTestRunTest.h
@@ -56,14 +56,14 @@ public:
//launch the test process, return whether it started correctly
bool StartTest();
//capture and report the test results
- bool EndTest(int completed, int total);
+ bool EndTest(size_t completed, size_t total);
//Called by ctest -N to log the command string
void ComputeArguments();
private:
void DartProcessing();
bool CreateProcess(double testTimeOut,
std::vector<std::string>* environment);
- void WriteLogOutputTop(int completed, int total);
+ void WriteLogOutputTop(size_t completed, size_t total);
//Run post processing of the process output for MemCheck
void MemCheckPostProcess();