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/cmCTest.cxx | |
parent | baa7b749e4cd47552f7366c5e7cdd0005a5bf7b8 (diff) | |
download | CMake-eff0013b3b26b35c69bf7dc3c1175d6bca87748d.zip CMake-eff0013b3b26b35c69bf7dc3c1175d6bca87748d.tar.gz CMake-eff0013b3b26b35c69bf7dc3c1175d6bca87748d.tar.bz2 |
ENH: More output
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r-- | Source/cmCTest.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
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); } |