~ubuntu-branches/ubuntu/lucid/cmake/lucid

« back to all changes in this revision

Viewing changes to Tests/CTestTest/test.cmake.in

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2009-12-16 11:11:54 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091216111154-6accvv6yq86h2hkc
Tags: 2.8.0-5ubuntu1
* Merge from debian testing (LP: #497349). Remaining changes:
  - Keep the Replaces: on cmake-data to cover the Kubuntu version from
    Jaunty in case someone decides to do an (unsupported) Jaunty->Lucid
    upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
###################################################################
5
5
 
6
6
# this is the cvs module name that should be checked out
7
 
SET (CTEST_MODULE_NAME kwsys)
 
7
SET (CTEST_MODULE_NAME SmallAndFast)
8
8
 
9
9
# these are the the name of the source and binary directory on disk. 
10
10
# They will be appended to DASHBOARD_ROOT
11
 
SET (CTEST_SOURCE_NAME kwsys)
12
 
SET (CTEST_BINARY_NAME kwsysBin)
 
11
SET (CTEST_SOURCE_NAME SmallAndFast)
 
12
SET (CTEST_BINARY_NAME SmallAndFastBuild)
13
13
 
14
14
# which ctest command to use for running the dashboard
15
15
SET (CTEST_COMMAND 
24
24
MESSAGE("CTest executable: ${CTEST_EXECUTABLE_NAME}")
25
25
MESSAGE("CMake executable: ${CTEST_CMAKE_COMMAND}")
26
26
 
27
 
CTEST_SLEEP(5)
28
 
CTEST_SLEEP(5 5 7)
 
27
CTEST_SLEEP(1)
 
28
CTEST_SLEEP(1 1 1)
29
29
 
30
30
####################################################################
31
31
# The values in this section are optional you can either
39
39
# any quotes inside of this string if you use it
40
40
SET (CTEST_INITIAL_CACHE "
41
41
SITE:STRING=@SITE@
42
 
BUILDNAME:STRING=KWSys-@BUILDNAME@
 
42
BUILDNAME:STRING=SmallAndFast-@BUILDNAME@
43
43
CMAKE_GENERATOR:INTERNAL=@CMAKE_GENERATOR@
44
44
CMAKE_CXX_FLAGS:STRING=@CMAKE_CXX_FLAGS@
45
45
CMAKE_C_FLAGS:STRING=@CMAKE_C_FLAGS@
52
52
MEMORYCHECK_SUPPRESSIONS_FILE:FILEPATH=@MEMORYCHECK_SUPPRESSIONS_FILE@
53
53
MEMORYCHECK_COMMAND_OPTIONS:STRING=@MEMORYCHECK_COMMAND_OPTIONS@
54
54
COVERAGE_COMMAND:FILEPATH=@COVERAGE_COMMAND@
55
 
 
56
 
# This one is needed for testing advanced ctest features
57
 
CTEST_TEST_KWSYS:BOOL=ON
58
55
")
59
56
 
60
57
# if you do not want to use the default location for a 
67
64
SET (CTEST_ENVIRONMENT
68
65
)
69
66
 
70
 
SET (CTEST_SOURCE_DIRECTORY "@CMake_SOURCE_DIR@/Source/kwsys")
 
67
SET (CTEST_SOURCE_DIRECTORY "@CMake_SOURCE_DIR@/Tests/CTestTest/SmallAndFast")
71
68
SET (CTEST_BINARY_DIRECTORY "@CMake_BINARY_DIR@/Tests/CTestTest/${CTEST_BINARY_NAME}")