diff options
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 |