[Cmake-commits] [cmake-commits] king committed cmCTestSubmitCommand.cxx 1.16 1.17
cmake-commits at cmake.org
cmake-commits at cmake.org
Fri May 15 15:39:46 EDT 2009
Update of /cvsroot/CMake/CMake/Source/CTest
In directory public:/mounts/ram/cvs-serv15927/Source/CTest
Modified Files:
cmCTestSubmitCommand.cxx
Log Message:
ENH: Remove CTest public.kitware.com drop default
Previously CTest would drop dashboard submissions at public.kitware.com
on the PublicDashboard project if there was no configuration. The
server no longer supports forwarding to cdash.org, so there is no point
in this default. Furthermore, there should be no default at all because
it could leak information about proprietary projects that are not
configured correctly.
Index: cmCTestSubmitCommand.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/CTest/cmCTestSubmitCommand.cxx,v
retrieving revision 1.16
retrieving revision 1.17
diff -C 2 -d -r1.16 -r1.17
*** cmCTestSubmitCommand.cxx 17 Apr 2009 18:44:01 -0000 1.16
--- cmCTestSubmitCommand.cxx 15 May 2009 19:39:43 -0000 1.17
***************
*** 39,79 ****
}
! if ( ctestDropSiteCDash )
{
! // drop site is a CDash server...
! //
! if ( !ctestDropSite )
! {
! // error: CDash requires CTEST_DROP_SITE definition
! // in CTestConfig.cmake
! }
! if ( !ctestDropLocation )
! {
! // error: CDash requires CTEST_DROP_LOCATION definition
! // in CTestConfig.cmake
! }
}
! else
{
! // drop site is a *NOT* a CDash server...
! //
! // Keep all this code in case anybody out there is still
! // using newer CMake with non-CDash servers
! //
! if ( !ctestDropSite )
! {
! ctestDropSite = "public.kitware.com";
! }
! if ( !ctestDropLocation )
! {
! ctestDropLocation = "/cgi-bin/HTTPUploadDartFile.cgi";
! }
! if ( !ctestTriggerSite )
! {
! ctestTriggerSite
! = "http://public.kitware.com/cgi-bin/Submit-Random-TestingResults.cgi";
! cmCTestLog(this->CTest, HANDLER_OUTPUT, "* Use default trigger site: "
! << ctestTriggerSite << std::endl;);
! }
}
--- 39,51 ----
}
! if ( !ctestDropSite )
{
! // error: CDash requires CTEST_DROP_SITE definition
! // in CTestConfig.cmake
}
! if ( !ctestDropLocation )
{
! // error: CDash requires CTEST_DROP_LOCATION definition
! // in CTestConfig.cmake
}
More information about the Cmake-commits
mailing list