summaryrefslogtreecommitdiffstats
path: root/Source/ctest.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-03-14 16:11:39 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-03-14 16:11:39 (GMT)
commit567edf0e9a8f4dcaa82ceb0ae6a586867e3687f5 (patch)
tree314c6dff8d12ca7191960d97a18881e18781dd17 /Source/ctest.cxx
parent7c73456401724698a1a4675d475d953d17558911 (diff)
downloadCMake-567edf0e9a8f4dcaa82ceb0ae6a586867e3687f5.zip
CMake-567edf0e9a8f4dcaa82ceb0ae6a586867e3687f5.tar.gz
CMake-567edf0e9a8f4dcaa82ceb0ae6a586867e3687f5.tar.bz2
ENH: overhaul of RunCommand on windows, if only win32 had popen...
Diffstat (limited to 'Source/ctest.cxx')
-rw-r--r--Source/ctest.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/ctest.cxx b/Source/ctest.cxx
index 563d28a..7ff80ba 100644
--- a/Source/ctest.cxx
+++ b/Source/ctest.cxx
@@ -211,7 +211,7 @@ void ctest::ProcessDirectory(int &passed, std::vector<std::string> &failed)
std::string output;
int retVal;
if (!cmSystemTools::RunCommand(testCommand.c_str(), output,
- retVal, false) || retVal != 0)
+ retVal, 0, false) || retVal != 0)
{
fprintf(stderr,"***Failed\n");
if (output != "")