BUG: Replace some errors with warnings

This commit is contained in:
Andy Cedilnik 2006-10-13 10:27:01 -04:00
parent 69356d8a7a
commit 870f2aeb2e
2 changed files with 3 additions and 3 deletions

View File

@ -334,7 +334,7 @@ bool cmCTestMemCheckHandler::InitializeMemoryChecking()
}
else
{
cmCTestLog(this->CTest, ERROR_MESSAGE,
cmCTestLog(this->CTest, WARNING,
"Memory checker (MemoryCheckCommand) "
"not set, or cannot find the specified program."
<< std::endl);

View File

@ -744,7 +744,7 @@ int cmCTestUpdateHandler::ProcessHandler()
ofs << output << std::endl;
}
}
if ( res && retVal == 0)
if ( res )
{
cmCTestLog(this->CTest, DEBUG, output << std::endl);
std::string::size_type sline = 0;
@ -1090,7 +1090,7 @@ int cmCTestUpdateHandler::ProcessHandler()
os << "</UpdateReturnStatus>" << std::endl;
os << "</Update>" << std::endl;
if (! res || retVal )
if (! res )
{
cmCTestLog(this->CTest, ERROR_MESSAGE,
"Error(s) when updating the project" << std::endl);