[cmake-commits] hoffman committed cmCTest.cxx 1.323 1.324

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Jun 14 13:05:11 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv15981/Source

Modified Files:
	cmCTest.cxx 
Log Message:
ENH: add more verbose output


Index: cmCTest.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCTest.cxx,v
retrieving revision 1.323
retrieving revision 1.324
diff -u -d -r1.323 -r1.324
--- cmCTest.cxx	12 Jun 2007 15:11:07 -0000	1.323
+++ cmCTest.cxx	14 Jun 2007 17:05:09 -0000	1.324
@@ -524,6 +524,8 @@
       fileName = this->BinaryDir + "/CTestConfiguration.ini";
       }
     }
+  cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "UpdateCTestConfiguration  from :"
+             << fileName.c_str() << "\n");
   if ( !cmSystemTools::FileExists(fileName.c_str()) )
     {
     // No need to exit if we are not producing XML
@@ -536,6 +538,8 @@
     }
   else
     {
+    cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "Parse Config file:" 
+               << fileName.c_str() << "\n");
     // parse the dart test file
     std::ifstream fin(fileName.c_str());
     if(!fin)
@@ -2243,6 +2247,9 @@
 //----------------------------------------------------------------------
 void cmCTest::SetCTestConfiguration(const char *name, const char* value)
 {
+  cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "SetCTestConfiguration:"
+             << name << ":" << value << "\n");
+
   if ( !name )
     {
     return;
@@ -2358,6 +2365,9 @@
     {
     return false;
     }
+  cmCTestLog(this, HANDLER_VERBOSE_OUTPUT,
+             "SetCTestConfigurationFromCMakeVariable:"
+             << dconfig << ":" << cmake_var);
   this->SetCTestConfiguration(dconfig, ctvar);
   return true;
 }



More information about the Cmake-commits mailing list