From: <dg...@su...> - 2009-01-11 17:36:08
|
Author: henrik Date: Sun Jan 11 18:35:30 2009 New Revision: 5113 URL: http://www.opensync.org/changeset/5113 Log: Added Dart / CDash support Added: plugins/mozilla-sync/trunk/CTestConfig.cmake Modified: plugins/mozilla-sync/trunk/CMakeLists.txt Modified: plugins/mozilla-sync/trunk/CMakeLists.txt ============================================================================== --- plugins/mozilla-sync/trunk/CMakeLists.txt Sun Jan 11 18:27:21 2009 (r5112) +++ plugins/mozilla-sync/trunk/CMakeLists.txt Sun Jan 11 18:35:30 2009 (r5113) @@ -68,6 +68,7 @@ IF( ENABLE_TESTING ) MESSAGE( "TESTING ENABLED" ) ENABLE_TESTING() + INCLUDE( Dart ) FIND_PACKAGE( Check REQUIRED ) ADD_SUBDIRECTORY( tests ) ENDIF ( ENABLE_TESTING ) Added: plugins/mozilla-sync/trunk/CTestConfig.cmake ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ plugins/mozilla-sync/trunk/CTestConfig.cmake Sun Jan 11 18:35:30 2009 (r5113) @@ -0,0 +1,13 @@ +## This file should be placed in the root directory of your project. +## Then modify the CMakeLists.txt file in the root directory of your +## project to incorporate the testing dashboard. +## # The following are required to uses Dart and the Cdash dashboard +## ENABLE_TESTING() +## INCLUDE(Dart) +set(CTEST_PROJECT_NAME "mozilla-sync") +set(CTEST_NIGHTLY_START_TIME "00:00:00 CET") + +set(CTEST_DROP_METHOD "http") +set(CTEST_DROP_SITE "opensync.org") +set(CTEST_DROP_LOCATION "/testing/submit.php?project=mozilla-sync") +set(CTEST_DROP_SITE_CDASH TRUE) |