[Cmake-commits] [cmake-commits] king committed cmCTestBuildCommand.cxx 1.19 1.20

cmake-commits at cmake.org cmake-commits at cmake.org
Fri Feb 13 11:49:34 EST 2009


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

Modified Files:
	cmCTestBuildCommand.cxx 
Log Message:
BUG: Fix CTEST_USE_LAUNCHERS in dashboard scripts

Since CTest does not currently load configuration settings computed at
CMake Configure time while running dashboard scripts, the ctest_build
command must honor the CTEST_USE_LAUNCHERS option directly.


Index: cmCTestBuildCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestBuildCommand.cxx,v
retrieving revision 1.19
retrieving revision 1.20
diff -C 2 -d -r1.19 -r1.20
*** cmCTestBuildCommand.cxx	14 Jan 2009 18:01:38 -0000	1.19
--- cmCTestBuildCommand.cxx	13 Feb 2009 16:49:31 -0000	1.20
***************
*** 134,137 ****
--- 134,143 ----
      }
  
+   if(const char* useLaunchers =
+      this->Makefile->GetDefinition("CTEST_USE_LAUNCHERS"))
+     {
+     this->CTest->SetCTestConfiguration("UseLaunchers", useLaunchers);
+     }
+ 
    return handler;
  }



More information about the Cmake-commits mailing list