DartConfiguration.tcl.in 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. # Configuration directories and files
  5. SourceDirectory: @PROJECT_SOURCE_DIR@
  6. BuildDirectory: @PROJECT_BINARY_DIR@
  7. # Where to place the cost data store
  8. CostDataFile: @CTEST_COST_DATA_FILE@
  9. # Site is something like machine.domain, i.e. pragmatic.crd
  10. Site: @SITE@
  11. # Build name is osname-revision-compiler, i.e. Linux-2.4.2-2smp-c++
  12. BuildName: @BUILDNAME@
  13. # Submission information
  14. IsCDash: @CTEST_DROP_SITE_CDASH@
  15. CDashVersion: @CTEST_CDASH_VERSION@
  16. QueryCDashVersion: @CTEST_CDASH_QUERY_VERSION@
  17. DropSite: @DROP_SITE@
  18. DropLocation: @DROP_LOCATION@
  19. DropSiteUser: @DROP_SITE_USER@
  20. DropSitePassword: @DROP_SITE_PASSWORD@
  21. DropSiteMode: @DROP_SITE_MODE@
  22. DropMethod: @DROP_METHOD@
  23. TriggerSite: @TRIGGER_SITE@
  24. ScpCommand: @SCPCOMMAND@
  25. # Dashboard start time
  26. NightlyStartTime: @NIGHTLY_START_TIME@
  27. # Commands for the build/test/submit cycle
  28. ConfigureCommand: "@CMAKE_COMMAND@" "@PROJECT_SOURCE_DIR@"
  29. MakeCommand: @MAKECOMMAND@
  30. DefaultCTestConfigurationType: @DEFAULT_CTEST_CONFIGURATION_TYPE@
  31. # version control
  32. UpdateVersionOnly: @CTEST_UPDATE_VERSION_ONLY@
  33. # CVS options
  34. # Default is "-d -P -A"
  35. CVSCommand: @CVSCOMMAND@
  36. CVSUpdateOptions: @CVS_UPDATE_OPTIONS@
  37. # Subversion options
  38. SVNCommand: @SVNCOMMAND@
  39. SVNOptions: @CTEST_SVN_OPTIONS@
  40. SVNUpdateOptions: @SVN_UPDATE_OPTIONS@
  41. # Git options
  42. GITCommand: @GITCOMMAND@
  43. GITInitSubmodules: @CTEST_GIT_INIT_SUBMODULES@
  44. GITUpdateOptions: @GIT_UPDATE_OPTIONS@
  45. GITUpdateCustom: @CTEST_GIT_UPDATE_CUSTOM@
  46. # Perforce options
  47. P4Command: @P4COMMAND@
  48. P4Client: @CTEST_P4_CLIENT@
  49. P4Options: @CTEST_P4_OPTIONS@
  50. P4UpdateOptions: @CTEST_P4_UPDATE_OPTIONS@
  51. P4UpdateCustom: @CTEST_P4_UPDATE_CUSTOM@
  52. # Generic update command
  53. UpdateCommand: @UPDATE_COMMAND@
  54. UpdateOptions: @UPDATE_OPTIONS@
  55. UpdateType: @UPDATE_TYPE@
  56. # Compiler info
  57. Compiler: @CMAKE_CXX_COMPILER@
  58. CompilerVersion: @CMAKE_CXX_COMPILER_VERSION@
  59. # Dynamic analysis (MemCheck)
  60. PurifyCommand: @PURIFYCOMMAND@
  61. ValgrindCommand: @VALGRIND_COMMAND@
  62. ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@
  63. MemoryCheckType: @MEMORYCHECK_TYPE@
  64. MemoryCheckSanitizerOptions: @MEMORYCHECK_SANITIZER_OPTIONS@
  65. MemoryCheckCommand: @MEMORYCHECK_COMMAND@
  66. MemoryCheckCommandOptions: @MEMORYCHECK_COMMAND_OPTIONS@
  67. MemoryCheckSuppressionFile: @MEMORYCHECK_SUPPRESSIONS_FILE@
  68. # Coverage
  69. CoverageCommand: @COVERAGE_COMMAND@
  70. CoverageExtraFlags: @COVERAGE_EXTRA_FLAGS@
  71. # Cluster commands
  72. SlurmBatchCommand: @SLURM_SBATCH_COMMAND@
  73. SlurmRunCommand: @SLURM_SRUN_COMMAND@
  74. # Testing options
  75. # TimeOut is the amount of time in seconds to wait for processes
  76. # to complete during testing. After TimeOut seconds, the
  77. # process will be summarily terminated.
  78. # Currently set to 25 minutes
  79. TimeOut: @DART_TESTING_TIMEOUT@
  80. # During parallel testing CTest will not start a new test if doing
  81. # so would cause the system load to exceed this value.
  82. TestLoad: @CTEST_TEST_LOAD@
  83. UseLaunchers: @CTEST_USE_LAUNCHERS@
  84. CurlOptions: @CTEST_CURL_OPTIONS@
  85. # warning, if you add new options here that have to do with submit,
  86. # you have to update cmCTestSubmitCommand.cxx
  87. # For CTest submissions that timeout, these options
  88. # specify behavior for retrying the submission
  89. CTestSubmitRetryDelay: @CTEST_SUBMIT_RETRY_DELAY@
  90. CTestSubmitRetryCount: @CTEST_SUBMIT_RETRY_COUNT@