summaryrefslogtreecommitdiffstats
path: root/Source/CTest/cmCTestConfigureHandler.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-31 22:40:43 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-05-31 22:40:43 (GMT)
commit7f7cf5ee6bc298e0dfa4790628241c909d941d55 (patch)
tree0c0def15e0c112fb7ce41e2e7912b53a56c59790 /Source/CTest/cmCTestConfigureHandler.cxx
parentf6e5a878fc8de3ac3ef38b144a0a649a9f227682 (diff)
downloadCMake-7f7cf5ee6bc298e0dfa4790628241c909d941d55.zip
CMake-7f7cf5ee6bc298e0dfa4790628241c909d941d55.tar.gz
CMake-7f7cf5ee6bc298e0dfa4790628241c909d941d55.tar.bz2
COMP: Remove ERROR reserved word or something and replace with ERROR_MESSAGE
Diffstat (limited to 'Source/CTest/cmCTestConfigureHandler.cxx')
-rw-r--r--Source/CTest/cmCTestConfigureHandler.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestConfigureHandler.cxx b/Source/CTest/cmCTestConfigureHandler.cxx
index 4e8d2db..888eb4b 100644
--- a/Source/CTest/cmCTestConfigureHandler.cxx
+++ b/Source/CTest/cmCTestConfigureHandler.cxx
@@ -39,7 +39,7 @@ int cmCTestConfigureHandler::ProcessHandler()
std::string cCommand = m_CTest->GetCTestConfiguration("ConfigureCommand");
if ( cCommand.size() == 0 )
{
- cmCTestLog(m_CTest, ERROR, "Cannot find ConfigureCommand key in the DartConfiguration.tcl"
+ cmCTestLog(m_CTest, ERROR_MESSAGE, "Cannot find ConfigureCommand key in the DartConfiguration.tcl"
<< std::endl);
return -1;
}
@@ -47,7 +47,7 @@ int cmCTestConfigureHandler::ProcessHandler()
std::string buildDirectory = m_CTest->GetCTestConfiguration("BuildDirectory");
if ( buildDirectory.size() == 0 )
{
- cmCTestLog(m_CTest, ERROR, "Cannot find BuildDirectory key in the DartConfiguration.tcl" << std::endl);
+ cmCTestLog(m_CTest, ERROR_MESSAGE, "Cannot find BuildDirectory key in the DartConfiguration.tcl" << std::endl);
return -1;
}
@@ -60,7 +60,7 @@ int cmCTestConfigureHandler::ProcessHandler()
cmGeneratedFileStream os;
if ( !m_CTest->OpenOutputFile(m_CTest->GetCurrentTag(), "Configure.xml", os, true) )
{
- cmCTestLog(m_CTest, ERROR, "Cannot open configure file" << std::endl);
+ cmCTestLog(m_CTest, ERROR_MESSAGE, "Cannot open configure file" << std::endl);
return 1;
}
std::string start_time = m_CTest->CurrentTime();
@@ -105,7 +105,7 @@ int cmCTestConfigureHandler::ProcessHandler()
}
if (! res || retVal )
{
- cmCTestLog(m_CTest, ERROR, "Error(s) when updating the project" << std::endl);
+ cmCTestLog(m_CTest, ERROR_MESSAGE, "Error(s) when updating the project" << std::endl);
return -1;
}
return 0;