summaryrefslogtreecommitdiff
path: root/Templates
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-04-28 11:58:16 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-04-28 11:58:16 -0400
commit3006560d864f4224cf5242b53b85a4d4b3ccf07d (patch)
tree7a5e8fe489092e973860ae8cc36295ab10981d8f /Templates
parentcd09448a5396a9b06f461237339b3736f05122e8 (diff)
downloadcmake-3006560d864f4224cf5242b53b85a4d4b3ccf07d.tar.gz
ENH: Add template of ctest script
Diffstat (limited to 'Templates')
-rw-r--r--Templates/CTestScript.cmake.in33
1 files changed, 33 insertions, 0 deletions
diff --git a/Templates/CTestScript.cmake.in b/Templates/CTestScript.cmake.in
new file mode 100644
index 0000000000..63bd26f475
--- /dev/null
+++ b/Templates/CTestScript.cmake.in
@@ -0,0 +1,33 @@
+CMAKE_MINIMUM_REQUIRED(VERSION 2.4)
+
+# This is a template for the CTest script for this system
+
+SET(CTEST_SITE "@SITE@")
+SET(CTEST_BUILD_NAME "@BUILDNAME@")
+
+# ---
+SET(CTEST_SOURCE_DIRECTORY "@CMAKE_SOURCE_DIR@")
+SET(CTEST_BINARY_DIRECTORY "@CMAKE_BINARY_DIR@")
+SET(CTEST_UPDATE_COMMAND "@UPDATE_COMMAND@")
+SET(CTEST_UPDATE_OPTIONS "@UPDATE_OPTIONS@")
+SET(CTEST_CMAKE_GENERATOR "@CMAKE_GENERATOR@")
+SET(CTEST_BUILD_CONFIGURATION "Release")
+#SET(CTEST_MEMORYCHECK_COMMAND "@MEMORYCHECK_COMMAND@")
+#SET(CTEST_MEMORYCHECK_SUPPRESSIONS_FILE "@MEMORYCHECK_SUPPRESSIONS_FILE@")
+#SET(CTEST_MEMORYCHECK_COMMAND_OPTIONS "@MEMORYCHECK_COMMAND_OPTIONS@")
+#SET(CTEST_COVERAGE_COMMAND "@COVERAGE_COMMAND@")
+SET(CTEST_NOTES_FILES "${CTEST_SCRIPT_DIRECTORY}/${CTEST_SCRIPT_NAME}")
+
+#CTEST_EMPTY_BINARY_DIRECTORY(${CTEST_BINARY_DIRECTORY})
+
+SET(CTEST_DROP_METHOD "@DROP_METHOD@")
+
+CTEST_START(Experimental TRACK Weekly)
+CTEST_UPDATE(SOURCE "${CTEST_SOURCE_DIRECTORY}")
+CTEST_CONFIGURE(BUILD "${CTEST_BINARY_DIRECTORY}")
+CTEST_READ_CUSTOM_FILES("${CTEST_BINARY_DIRECTORY}")
+CTEST_BUILD(BUILD "${CTEST_BINARY_DIRECTORY}")
+CTEST_TEST(BUILD "${CTEST_BINARY_DIRECTORY}")
+#CTEST_MEMCHECK(BUILD "${CTEST_BINARY_DIRECTORY}")
+#CTEST_COVERAGE(BUILD "${CTEST_BINARY_DIRECTORY}")
+CTEST_SUBMIT()