[cmake-commits] king committed cmCTest.cxx 1.328 1.329

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Nov 21 10:07:02 EST 2007


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

Modified Files:
	cmCTest.cxx 
Log Message:
BUG: Do not require a nightly start time for an experimental or continuous test model.


Index: cmCTest.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmCTest.cxx,v
retrieving revision 1.328
retrieving revision 1.329
diff -u -d -r1.328 -r1.329
--- cmCTest.cxx	18 Sep 2007 15:34:53 -0000	1.328
+++ cmCTest.cxx	21 Nov 2007 15:07:00 -0000	1.329
@@ -318,7 +318,8 @@
       << "   Build name: " << this->GetCTestConfiguration("BuildName")
       << std::endl);
     cmCTestLog(this, DEBUG, "Produce XML is on" << std::endl);
-    if ( this->GetCTestConfiguration("NightlyStartTime").empty() )
+    if ( this->TestModel == cmCTest::NIGHTLY &&
+         this->GetCTestConfiguration("NightlyStartTime").empty() )
       {
       cmCTestLog(this, WARNING,
                  "WARNING: No nightly start time found please set in"



More information about the Cmake-commits mailing list