summaryrefslogtreecommitdiffstats
path: root/Source/cmWin32ProcessExecution.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2004-01-07 16:24:22 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2004-01-07 16:24:22 (GMT)
commit2c2291bbe03aec2dd6637a5311204f09ff6c58ba (patch)
tree35947ba07840f9ea939e33567c1e6c3e79a37132 /Source/cmWin32ProcessExecution.cxx
parenta8620773f3b934752062015a0df9fbe100e10dc7 (diff)
downloadCMake-2c2291bbe03aec2dd6637a5311204f09ff6c58ba.zip
CMake-2c2291bbe03aec2dd6637a5311204f09ff6c58ba.tar.gz
CMake-2c2291bbe03aec2dd6637a5311204f09ff6c58ba.tar.bz2
ENH: add new feature to ctest so that it can cmake, build and run a test executable
Diffstat (limited to 'Source/cmWin32ProcessExecution.cxx')
-rw-r--r--Source/cmWin32ProcessExecution.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmWin32ProcessExecution.cxx b/Source/cmWin32ProcessExecution.cxx
index ddd1b49..ba736db 100644
--- a/Source/cmWin32ProcessExecution.cxx
+++ b/Source/cmWin32ProcessExecution.cxx
@@ -220,7 +220,7 @@ bool cmWin32ProcessExecution::BorlandRunCommand(
output += buf;
if (verbose)
{
- std::cout << buf << std::flush;
+ cmSystemTools::Stdout(buf);
}
}
}
@@ -230,7 +230,7 @@ bool cmWin32ProcessExecution::BorlandRunCommand(
output += buf;
if(verbose)
{
- std::cout << buf << std::flush;
+ cmSystemTools::Stdout(buf);
}
}
@@ -791,7 +791,7 @@ bool cmWin32ProcessExecution::PrivateClose(int /* timeout */)
buffer[len] = 0;
if ( m_Verbose )
{
- std::cout << buffer << std::flush;
+ cmSystemTools::Stdout(buffer);
}
output += buffer;
have_some = true;
@@ -803,7 +803,7 @@ bool cmWin32ProcessExecution::PrivateClose(int /* timeout */)
buffer[len] = 0;
if ( m_Verbose )
{
- std::cout << buffer << std::flush;
+ cmSystemTools::Stdout(buffer);
}
output += buffer;
have_some = true;