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/cmaketest.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/cmaketest.cxx')
-rw-r--r-- | Source/cmaketest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmaketest.cxx b/Source/cmaketest.cxx index 1645b7c..521c965 100644 --- a/Source/cmaketest.cxx +++ b/Source/cmaketest.cxx @@ -256,7 +256,7 @@ int main (int argc, char *argv[]) fullPath = cmSystemTools::ConvertToOutputPath(fullPath.c_str()); std::cout << "Running test executable: " << fullPath.c_str() << "\n"; int ret = 0; - if (!cmSystemTools::RunCommand(fullPath.c_str(), output, ret, true)) + if (!cmSystemTools::RunCommand(fullPath.c_str(), output, ret, 0, true)) { std::cerr << "Error: " << fullPath.c_str() << " execution failed\n"; // return to the original directory |