diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-08-31 13:50:35 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-08-31 13:50:35 (GMT) |
commit | 5a5cc522309a21cda8449912f457282f941641e1 (patch) | |
tree | 838420fab50ac0080a4ad2ff08193c731642f9ce /Source/CTest/cmCTestRunTest.h | |
parent | bf830eea5efd1fc4e15b8b30e295f1da5e3aa2b0 (diff) | |
download | CMake-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.h | 4 |
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(); |