ENH: More output
This commit is contained in:
parent
baa7b749e4
commit
eff0013b3b
|
@ -287,7 +287,7 @@ int cmCTestUpdateHandler::ProcessHandler()
|
|||
{
|
||||
cmOStringStream ostr;
|
||||
ostr << "Problem running initial checkout Output [" << goutput << "] Errors [" << errors << "]";
|
||||
cmCTestLog(m_CTest, HANDLER_OUTPUT, ostr.str().c_str() << std::endl);
|
||||
cmCTestLog(m_CTest, ERROR_MESSAGE, ostr.str().c_str() << std::endl);
|
||||
checkoutErrorMessages += ostr.str();
|
||||
updateProducedError = true;
|
||||
}
|
||||
|
|
|
@ -1703,6 +1703,10 @@ int cmCTest::Run(std::vector<std::string>const& args, std::string* output)
|
|||
// call process directory
|
||||
if (this->m_RunConfigurationScript)
|
||||
{
|
||||
if ( m_ExtraVerbose )
|
||||
{
|
||||
cmCTestLog(this, OUTPUT, "* Extra verbosity turned on" << std::endl);
|
||||
}
|
||||
cmCTest::t_TestingHandlers::iterator it;
|
||||
for ( it = m_TestingHandlers.begin(); it != m_TestingHandlers.end(); ++ it )
|
||||
{
|
||||
|
@ -1722,10 +1726,10 @@ int cmCTest::Run(std::vector<std::string>const& args, std::string* output)
|
|||
it->second->SetVerbose(this->m_Verbose);
|
||||
it->second->SetSubmitIndex(m_SubmitIndex);
|
||||
}
|
||||
cmCTestLog(this, DEBUG, "Here: " << __LINE__ << std::endl);
|
||||
cmCTestLog(this, DEBUG, "Here: " << __LINE__ << std::endl);
|
||||
if ( !this->Initialize(cmSystemTools::GetCurrentWorkingDirectory().c_str()) )
|
||||
{
|
||||
cmCTestLog(this, DEBUG, "Here: " << __LINE__ << std::endl);
|
||||
cmCTestLog(this, DEBUG, "Here: " << __LINE__ << std::endl);
|
||||
res = 12;
|
||||
cmCTestLog(this, ERROR_MESSAGE, "Problem initializing the dashboard." << std::endl);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue