summaryrefslogtreecommitdiffstats
path: root/Source/cmCTest.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-02-11 14:19:36 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-02-11 14:19:36 (GMT)
commita32c7c39d76137ecbfd50e6c4e3d52a32f949323 (patch)
tree97116485050d53a7d078483cc901ed0670de120d /Source/cmCTest.cxx
parenta69c70d2d7301d8550ceff35c7674630c4b512bc (diff)
downloadCMake-a32c7c39d76137ecbfd50e6c4e3d52a32f949323.zip
CMake-a32c7c39d76137ecbfd50e6c4e3d52a32f949323.tar.gz
CMake-a32c7c39d76137ecbfd50e6c4e3d52a32f949323.tar.bz2
Fix cont and remove comments
Diffstat (limited to 'Source/cmCTest.cxx')
-rw-r--r--Source/cmCTest.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx
index 454ddf3..3892b15 100644
--- a/Source/cmCTest.cxx
+++ b/Source/cmCTest.cxx
@@ -283,8 +283,8 @@ void cmCTest::Initialize()
if ( tag.size() == 0 )
{
#ifdef HAVE_CURL
- std::cout << "TestModel: " << this->GetTestModelString() << std::endl;
- std::cout << "TestModel: " << m_TestModel << std::endl;
+ //std::cout << "TestModel: " << this->GetTestModelString() << std::endl;
+ //std::cout << "TestModel: " << m_TestModel << std::endl;
if ( m_TestModel == cmCTest::NIGHTLY )
{
int hour;
@@ -303,7 +303,7 @@ void cmCTest::Initialize()
m_DartConfiguration["NightlyStartTime"].c_str(),
&tctime);
tctime = time(0);
- std::cout << "Seconds: " << tctime << std::endl;
+ //std::cout << "Seconds: " << tctime << std::endl;
if ( ntime > tctime )
{
// If nightlySeconds is in the past, this is the current
@@ -312,9 +312,9 @@ void cmCTest::Initialize()
// dashboard to be opened, so subtract 24 hours to get the
// time of the current open dashboard
ntime -= (24 * 60 * 60 );
- std::cout << "Pick yesterday" << std::endl;
+ //std::cout << "Pick yesterday" << std::endl;
}
- std::cout << "nightlySeconds: " << ntime << std::endl;
+ //std::cout << "nightlySeconds: " << ntime << std::endl;
lctime = gmtime(&ntime);
}
#endif