[Cmake-commits] [cmake-commits] king committed cmCTestCVS.cxx 1.2 1.3

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Apr 29 14:20:42 EDT 2009


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

Modified Files:
	cmCTestCVS.cxx 
Log Message:
BUG: Remove '-d<now' from 'cvs log' commands

When CTest runs 'cvs log' to get revision information for updated files,
we were passing '-d<now'.  The option seems useless since revisions
cannot be created in the future, and can lose revisions if the client
machine clock is behind the server.


Index: cmCTestCVS.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestCVS.cxx,v
retrieving revision 1.2
retrieving revision 1.3
diff -C 2 -d -r1.2 -r1.3
*** cmCTestCVS.cxx	25 Feb 2009 19:42:45 -0000	1.2
--- cmCTestCVS.cxx	29 Apr 2009 18:20:40 -0000	1.3
***************
*** 262,266 ****
    const char* cvs = this->CommandLineTool.c_str();
    const char* cvs_log[] =
!     {cvs, "log", "-N", "-d<now", branchFlag, file.c_str(), 0};
  
    LogParser out(this, "log-out> ", revisions);
--- 262,266 ----
    const char* cvs = this->CommandLineTool.c_str();
    const char* cvs_log[] =
!     {cvs, "log", "-N", branchFlag, file.c_str(), 0};
  
    LogParser out(this, "log-out> ", revisions);



More information about the Cmake-commits mailing list