From 251032b1906f1d9a311449182184db72de6bccae Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 5 Nov 2003 10:46:16 -0500 Subject: [PATCH] BUG#259: Fix for spaces in paths to executable added to previous fixes for this bug. --- Source/cmCTest.cxx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 9ddc1c930..cb81a9006 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -1713,10 +1713,8 @@ void cmCTest::ProcessDirectory(std::vector &passed, } //std::cerr << "Testing " << args[0] << " ... "; // find the test executable - std::string testCommand = this->FindTheExecutable(args[1].Value.c_str()); - testCommand = cmSystemTools::ConvertToOutputPath(testCommand.c_str()); - - std::string actualCommand = testCommand; + std::string actualCommand = this->FindTheExecutable(args[1].Value.c_str()); + std::string testCommand = cmSystemTools::ConvertToOutputPath(actualCommand.c_str()); // continue if we did not find the executable if (testCommand == "") @@ -2472,8 +2470,14 @@ int cmCTest::RunTest(std::vector argv, std::string* output, int *re } else if(result == cmsysProcess_State_Error) { - *output += "\n*** ERROR executing: "; - *output += cmsysProcess_GetErrorString(cp); + std::string outerr = "\n*** ERROR executing: "; + outerr += cmsysProcess_GetErrorString(cp); + *output += outerr; + if ( m_Verbose ) + { + std::cout << outerr.c_str() << "\n"; + std::cout.flush(); + } } cmsysProcess_Delete(cp);