summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestConfigureHandler.cxx
diff options
context:
space:
mode:
authorDavid Cole <david.cole@kitware.com>2008-12-30 14:13:02 (GMT)
committerDavid Cole <david.cole@kitware.com>2008-12-30 14:13:02 (GMT)
commit9457ca3cf593a82f9ffb90534ffe6285c235b8c1 (patch)
tree47a3caa433385feceea6379f2c52d11afc679aaf /Source/CTest/cmCTestConfigureHandler.cxx
parentb6402578843ea0b5ae05028b57465aa877e12c28 (diff)
downloadCMake-9457ca3cf593a82f9ffb90534ffe6285c235b8c1.zip
CMake-9457ca3cf593a82f9ffb90534ffe6285c235b8c1.tar.gz
CMake-9457ca3cf593a82f9ffb90534ffe6285c235b8c1.tar.bz2
ENH: Add OPTIONS argument to the ctest_configure command so that you can pass -D arguments to the cmake configure step from a ctest -S script. Also clarify/correct some not so helpful error messages.
Diffstat (limited to 'Source/CTest/cmCTestConfigureHandler.cxx')
-rw-r--r--Source/CTest/cmCTestConfigureHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestConfigureHandler.cxx b/Source/CTest/cmCTestConfigureHandler.cxx
index b81767b..c744d77 100644
--- a/Source/CTest/cmCTestConfigureHandler.cxx
+++ b/Source/CTest/cmCTestConfigureHandler.cxx
@@ -98,7 +98,7 @@ int cmCTestConfigureHandler::ProcessHandler()
<< std::endl
<< "\t<StartConfigureTime>" << start_time_time
<< "</StartConfigureTime>\n";
-
+
if ( res == cmsysProcess_State_Exited && retVal )
{
os << retVal;
@@ -129,7 +129,7 @@ int cmCTestConfigureHandler::ProcessHandler()
if (! res || retVal )
{
cmCTestLog(this->CTest, ERROR_MESSAGE,
- "Error(s) when updating the project" << std::endl);
+ "Error(s) when configuring the project" << std::endl);
return -1;
}
return 0;