[cmake-commits] martink committed cmCTest.cxx 1.314 1.315

cmake-commits at cmake.org cmake-commits at cmake.org
Mon Jan 29 12:42:36 EST 2007


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

Modified Files:
	cmCTest.cxx 
Log Message:
BUG: fix in the timeout code


Index: cmCTest.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCTest.cxx,v
retrieving revision 1.314
retrieving revision 1.315
diff -u -d -r1.314 -r1.315
--- cmCTest.cxx	25 Jan 2007 16:16:15 -0000	1.314
+++ cmCTest.cxx	29 Jan 2007 17:42:33 -0000	1.315
@@ -1136,8 +1136,6 @@
     {
     timeout = this->TimeOut;
     }
-  cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "-- timeout set to "
-             << testTimeOut << std::endl);
   if (testTimeOut && testTimeOut < timeout)
     {
     timeout = testTimeOut;
@@ -1148,7 +1146,7 @@
     timeout = 1;
     }
 
-  cmsysProcess_SetTimeout(cp, this->TimeOut);
+  cmsysProcess_SetTimeout(cp, timeout);
   cmsysProcess_Execute(cp);
 
   char* data;



More information about the Cmake-commits mailing list