Browse Source

Rename Testing.cmake to Dart.cmake

Jim Miller 24 years ago
parent
commit
faa1fb8bed
1 changed files with 166 additions and 0 deletions
  1. 166 0
      Modules/Dart.cmake

+ 166 - 0
Modules/Dart.cmake

@@ -0,0 +1,166 @@
+# Dart.cmake
+#
+# This file configures a project to use the Dart testing/dashboard process.
+# It is broken into 3 sections.
+# 
+# Section #1: Locate programs on the client and determine site and build name
+# Section #2: Configure or copy Tcl scripts from the source tree to build tree
+# Section #3: Custom targets for performing dashboard builds.
+#
+#
+OPTION(BUILD_TESTING "Build the testing tree." "On")
+
+IF(BUILD_TESTING)
+  #
+  # Section #1:
+  #
+  # CMake commands that will not vary from project to project. Locates programs
+  # on the client and configure site name and build name.
+  #
+
+  # find programs used by testing
+  # look for the make program
+  IF(NOT UNIX) 
+    FIND_PROGRAM(MAKEPROGRAM msdev )
+  ENDIF(NOT UNIX)
+  FIND_PROGRAM(MAKEPROGRAM NAMES gmake make )
+  FIND_PROGRAM(CVSCOMMAND cvs )
+  FIND_PROGRAM(GREPCOMMAND grep )
+  FIND_PROGRAM(COMPRESSIONCOMMAND NAMES gzip compress zip )
+  FIND_PROGRAM(GUNZIPCOMMAND gunzip )
+  FIND_PROGRAM(JAVACOMMAND java )
+
+  # find a tcl shell command
+  IF (UNIX)
+    FIND_PROGRAM(TCLSHCOMMAND cygtclsh80 )
+  ENDIF(UNIX)
+  FIND_PROGRAM(TCLSHCOMMAND 
+               NAMES tclsh tclsh83 tclsh8.3 tclsh82 tclsh8.2 tclsh80 tclsh8.0 
+               )
+  FIND_PROGRAM(HOSTNAME hostname /usr/bsd /usr/sbin /usr/bin /bin /sbin)
+  FIND_PROGRAM(NSLOOKUP nslookup /usr/bin /usr/sbin /usr/local/bin)
+
+  # set the site name
+  SITE_NAME(SITE)
+  # set the build name
+  BUILD_NAME(BUILDNAME)
+  # set the build command
+  BUILD_COMMAND(MAKECOMMAND ${MAKEPROGRAM} )
+
+  #
+  # Section #2:
+  # 
+  # Make necessary directories and configure testing scripts
+  #
+
+  # make directories in the binary tree
+  MAKE_DIRECTORY(${PROJECT_BINARY_DIR}/Testing/HTML/TestingResults/Sites/${SITE}/${BUILDNAME})
+
+  # configure files
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/Utility.conf.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/Utility.conf )
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/Build.tcl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/Build.tcl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/Utility.tcl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/Utility.tcl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/DashboardManager.tcl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/DashboardManager.tcl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/Test.tcl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/Test.tcl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/Submit.tcl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/Submit.tcl COPYONLY)
+  
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/Doxygen.tcl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/Doxygen.tcl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/DashboardConfig.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/DashboardConfig.xsl )
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/Build.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/Build.xsl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/Coverage.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/Coverage.xsl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/CoverageLog.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/CoverageLog.xsl COPYONLY)
+  
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/Dashboard.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/Dashboard.xsl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/Doxygen.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/Doxygen.xsl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/Purify.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/Purify.xsl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/Test.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/Test.xsl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/TestOverview.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/TestOverview.xsl COPYONLY)
+
+  CONFIGURE_FILE(
+  ${PROJECT_SOURCE_DIR}/Testing/Utilities/XSL/Update.xsl.in
+  ${PROJECT_BINARY_DIR}/Testing/Utilities/XSL/Update.xsl COPYONLY)
+
+  #
+  # Section 3:
+  #
+  # Custom targets to perform dashboard builds and submissions.
+  # These should NOT need to be modified from project to project.
+  #
+
+  # add testing targets
+  ADD_CUSTOM_TARGET(Nightly 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Nightly Start Build Test Submit")
+  ADD_CUSTOM_TARGET(NightlyBuild   
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Nightly Start Build")
+  ADD_CUSTOM_TARGET(NightlyTest 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Nightly Test")
+  ADD_CUSTOM_TARGET(NightlyCoverage 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Nightly Coverage")
+  ADD_CUSTOM_TARGET(NightlySubmit 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Nightly Submit")
+  ADD_CUSTOM_TARGET(NightlyDashboardStart 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Nightly DashboardStart")
+  ADD_CUSTOM_TARGET(NightlyDashboardEnd 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Nightly DashboardEnd")
+  ADD_CUSTOM_TARGET(ExperimentalBuild 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Experimental Start Build")
+  ADD_CUSTOM_TARGET(ExperimentalTest 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Experimental Test")
+  ADD_CUSTOM_TARGET(ExperimentalCoverage 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Experimental Coverage")
+  ADD_CUSTOM_TARGET(ExperimentalSubmit 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Experimental Submit")
+  ADD_CUSTOM_TARGET(Experimental 
+  "${TCLSHCOMMAND} Testing/Utilities/DashboardManager.tcl Experimental Start Build Test Submit")
+
+ENDIF(BUILD_TESTING)
+
+#
+# End of Dart.cmake
+#
+