summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmProcess.cxx
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-09-04 14:16:06 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-09-04 14:16:06 (GMT)
commitc6e5dd21fdc0b8f09e5c91d003c1fdd99ebc5e13 (patch)
tree549b797d799b54b2805e06cd9369b656b5986e72 /Source/CTest/cmProcess.cxx
parent85463b99552b8b361d7e4ff75c860dd63c250123 (diff)
downloadCMake-c6e5dd21fdc0b8f09e5c91d003c1fdd99ebc5e13.zip
CMake-c6e5dd21fdc0b8f09e5c91d003c1fdd99ebc5e13.tar.gz
CMake-c6e5dd21fdc0b8f09e5c91d003c1fdd99ebc5e13.tar.bz2
Added the test property EXPENSIVE, which denotes that the given test(s) should be started prior to tests that are not marked as such. Also fixed test dependencies, and a few uninitialized variables in cmProcess.
Diffstat (limited to 'Source/CTest/cmProcess.cxx')
-rw-r--r--Source/CTest/cmProcess.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/CTest/cmProcess.cxx b/Source/CTest/cmProcess.cxx
index b0914f2..2d98ad5 100644
--- a/Source/CTest/cmProcess.cxx
+++ b/Source/CTest/cmProcess.cxx
@@ -22,6 +22,11 @@ cmProcess::cmProcess()
{
this->Process = 0;
this->Timeout = 0;
+ this->TotalTime = 0;
+ this->LastOutputPipe = cmsysProcess_Pipe_None;
+ this->ExitValue = 0;
+ this->Id = 0;
+ this->StartTime = 0;
}
cmProcess::~cmProcess()