1# This file is configured by CMake automatically as DartConfiguration.tcl
2# If you choose not to use CMake, this file may be hand configured, by
3# filling in the required variables.
4
5
6# Configuration directories and files
7SourceDirectory: @PROJECT_SOURCE_DIR@
8BuildDirectory: @PROJECT_BINARY_DIR@
9
10# Where to place the cost data store
11CostDataFile: @CTEST_COST_DATA_FILE@
12
13# Site is something like machine.domain, i.e. pragmatic.crd
14Site: @SITE@
15
16# Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++
17BuildName: @BUILDNAME@
18
19# Subprojects
20LabelsForSubprojects: @CTEST_LABELS_FOR_SUBPROJECTS@
21
22# Submission information
23SubmitURL: @SUBMIT_URL@
24
25# Dashboard start time
26NightlyStartTime: @NIGHTLY_START_TIME@
27
28# Commands for the build/test/submit cycle
29ConfigureCommand: "@CMAKE_COMMAND@" "@PROJECT_SOURCE_DIR@"
30MakeCommand: @MAKECOMMAND@
31DefaultCTestConfigurationType: @DEFAULT_CTEST_CONFIGURATION_TYPE@
32
33# version control
34UpdateVersionOnly: @CTEST_UPDATE_VERSION_ONLY@
35
36# CVS options
37# Default is "-d -P -A"
38CVSCommand: @CVSCOMMAND@
39CVSUpdateOptions: @CVS_UPDATE_OPTIONS@
40
41# Subversion options
42SVNCommand: @SVNCOMMAND@
43SVNOptions: @CTEST_SVN_OPTIONS@
44SVNUpdateOptions: @SVN_UPDATE_OPTIONS@
45
46# Git options
47GITCommand: @GITCOMMAND@
48GITInitSubmodules: @CTEST_GIT_INIT_SUBMODULES@
49GITUpdateOptions: @GIT_UPDATE_OPTIONS@
50GITUpdateCustom: @CTEST_GIT_UPDATE_CUSTOM@
51
52# Perforce options
53P4Command: @P4COMMAND@
54P4Client: @CTEST_P4_CLIENT@
55P4Options: @CTEST_P4_OPTIONS@
56P4UpdateOptions: @CTEST_P4_UPDATE_OPTIONS@
57P4UpdateCustom: @CTEST_P4_UPDATE_CUSTOM@
58
59# Generic update command
60UpdateCommand: @UPDATE_COMMAND@
61UpdateOptions: @UPDATE_OPTIONS@
62UpdateType: @UPDATE_TYPE@
63
64# Compiler info
65Compiler: @CMAKE_CXX_COMPILER@
66CompilerVersion: @CMAKE_CXX_COMPILER_VERSION@
67
68# Dynamic analysis (MemCheck)
69PurifyCommand: @PURIFYCOMMAND@
70ValgrindCommand: @VALGRIND_COMMAND@
71ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@
72DrMemoryCommand: @DRMEMORY_COMMAND@
73DrMemoryCommandOptions: @DRMEMORY_COMMAND_OPTIONS@
74CudaSanitizerCommand: @CUDA_SANITIZER_COMMAND@
75CudaSanitizerCommandOptions: @CUDA_SANITIZER_COMMAND_OPTIONS@
76MemoryCheckType: @MEMORYCHECK_TYPE@
77MemoryCheckSanitizerOptions: @MEMORYCHECK_SANITIZER_OPTIONS@
78MemoryCheckCommand: @MEMORYCHECK_COMMAND@
79MemoryCheckCommandOptions: @MEMORYCHECK_COMMAND_OPTIONS@
80MemoryCheckSuppressionFile: @MEMORYCHECK_SUPPRESSIONS_FILE@
81
82# Coverage
83CoverageCommand: @COVERAGE_COMMAND@
84CoverageExtraFlags: @COVERAGE_EXTRA_FLAGS@
85
86# Testing options
87# TimeOut is the amount of time in seconds to wait for processes
88# to complete during testing.  After TimeOut seconds, the
89# process will be summarily terminated.
90# Currently set to 25 minutes
91TimeOut: @DART_TESTING_TIMEOUT@
92
93# During parallel testing CTest will not start a new test if doing
94# so would cause the system load to exceed this value.
95TestLoad: @CTEST_TEST_LOAD@
96
97UseLaunchers: @CTEST_USE_LAUNCHERS@
98CurlOptions: @CTEST_CURL_OPTIONS@
99# warning, if you add new options here that have to do with submit,
100# you have to update cmCTestSubmitCommand.cxx
101
102# For CTest submissions that timeout, these options
103# specify behavior for retrying the submission
104CTestSubmitRetryDelay: @CTEST_SUBMIT_RETRY_DELAY@
105CTestSubmitRetryCount: @CTEST_SUBMIT_RETRY_COUNT@
106