[Cmake-commits] [cmake-commits] king committed cmCTestSubmitHandler.cxx 1.35 1.36

cmake-commits at cmake.org cmake-commits at cmake.org
Tue Jan 27 10:58:29 EST 2009


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

Modified Files:
	cmCTestSubmitHandler.cxx 
Log Message:
BUG: Fix CTest submit-only operation

We need to initialize cmCTestSubmitHandler on construction to make sure
all parts get enabled by default.  The recent fix to re-enable all parts
on initialization broke submit-only operations because the handler did
not initialize on construction.  This also removes duplicate
initialization code.


Index: cmCTestSubmitHandler.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestSubmitHandler.cxx,v
retrieving revision 1.35
retrieving revision 1.36
diff -C 2 -d -r1.35 -r1.36
*** cmCTestSubmitHandler.cxx	15 Jan 2009 18:24:54 -0000	1.35
--- cmCTestSubmitHandler.cxx	27 Jan 2009 15:58:25 -0000	1.36
***************
*** 63,74 ****
  cmCTestSubmitHandler::cmCTestSubmitHandler() : HTTPProxy(), FTPProxy()
  {
!   this->HTTPProxy = "";
!   this->HTTPProxyType = 0;
!   this->HTTPProxyAuth = "";
! 
!   this->FTPProxy = "";
!   this->FTPProxyType = 0;
!   this->CDash = false;
! 
  }
  
--- 63,67 ----
  cmCTestSubmitHandler::cmCTestSubmitHandler() : HTTPProxy(), FTPProxy()
  {
!   this->Initialize();
  }
  



More information about the Cmake-commits mailing list