summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-08-19 13:24:55 (GMT)
committerZach Mullen <zach.mullen@kitware.com>2009-08-19 13:24:55 (GMT)
commita2ef34d34459261a13cc3e8ff8375165d4abfceb (patch)
treefc6874bdcf37b4c664c7873a98ad1b8acc94deb3 /Source/cmCTest.cxx
parentb9daa192af92266a375707e56963ebdb888065e4 (diff)
downloadCMake-a2ef34d34459261a13cc3e8ff8375165d4abfceb.zip
CMake-a2ef34d34459261a13cc3e8ff8375165d4abfceb.tar.gz
CMake-a2ef34d34459261a13cc3e8ff8375165d4abfceb.tar.bz2
Fixed overwriting of a previous change set
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 0b74107..abf47a2 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -1192,7 +1192,6 @@ int cmCTest::RunTest(std::vector<const char*> argv,
{
if ( output )
{
- //ZACH: need to grab the output here
tempOutput.insert(tempOutput.end(), data, data+length);
}
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, cmCTestLogWrite(data, length));
@@ -1205,7 +1204,6 @@ int cmCTest::RunTest(std::vector<const char*> argv,
cmsysProcess_WaitForExit(cp, 0);
if(output && tempOutput.begin() != tempOutput.end())
{
- //We are waiting for exit before finally appending to the output
output->append(&*tempOutput.begin(), tempOutput.size());
}
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "-- Process completed"