diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-14 16:11:39 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-14 16:11:39 (GMT) |
commit | 567edf0e9a8f4dcaa82ceb0ae6a586867e3687f5 (patch) | |
tree | 314c6dff8d12ca7191960d97a18881e18781dd17 /Source/ctest.cxx | |
parent | 7c73456401724698a1a4675d475d953d17558911 (diff) | |
download | CMake-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.cxx | 2 |
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 != "") |