diff options
Diffstat (limited to 'Source/CTest/cmProcess.cxx')
-rw-r--r-- | Source/CTest/cmProcess.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/CTest/cmProcess.cxx b/Source/CTest/cmProcess.cxx index 2d98ad5..8f5b112 100644 --- a/Source/CTest/cmProcess.cxx +++ b/Source/CTest/cmProcess.cxx @@ -159,12 +159,16 @@ int cmProcess::CheckOutput(double timeout) { // Append to the stdout buffer. this->StdOutBuffer.insert(this->StdOutBuffer.end(), data, data+length); + this->LastOutputPipe = pipe; + return pipe; } else if(pipe == cmsysProcess_Pipe_STDERR) { // Append to the stderr buffer. this->StdErrorBuffer.insert(this->StdErrorBuffer.end(), data, data+length); + this->LastOutputPipe = pipe; + return pipe; } else if(pipe == cmsysProcess_Pipe_None) { |