diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-10-19 15:00:28 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-10-19 15:00:28 (GMT) |
commit | eff0013b3b26b35c69bf7dc3c1175d6bca87748d (patch) | |
tree | 093b37d8fd78744b8b60b8fcc06e58c9576e4a9a /Source | |
parent | baa7b749e4cd47552f7366c5e7cdd0005a5bf7b8 (diff) | |
download | CMake-eff0013b3b26b35c69bf7dc3c1175d6bca87748d.zip CMake-eff0013b3b26b35c69bf7dc3c1175d6bca87748d.tar.gz CMake-eff0013b3b26b35c69bf7dc3c1175d6bca87748d.tar.bz2 |
ENH: More output
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/cmCTestUpdateHandler.cxx | 2 | ||||
-rw-r--r-- | Source/cmCTest.cxx | 8 |
2 files changed, 7 insertions, 3 deletions
diff --git a/Source/CTest/cmCTestUpdateHandler.cxx b/Source/CTest/cmCTestUpdateHandler.cxx index f95346e..f77b468 100644 --- a/Source/CTest/cmCTestUpdateHandler.cxx +++ b/Source/CTest/cmCTestUpdateHandler.cxx @@ -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; } diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index dc649a9..e9e84b5 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -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); } |