DartConfiguration.tcl.in 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. # CVS options
  32. # Default is "-d -P -A"
  33. CVSCommand: @CVSCOMMAND@
  34. CVSUpdateOptions: @CVS_UPDATE_OPTIONS@
  35. # Subversion options
  36. SVNCommand: @SVNCOMMAND@
  37. SVNUpdateOptions: @SVN_UPDATE_OPTIONS@
  38. # Git options
  39. GITCommand: @GITCOMMAND@
  40. GITUpdateOptions: @GIT_UPDATE_OPTIONS@
  41. GITUpdateCustom: @CTEST_GIT_UPDATE_CUSTOM@
  42. # Generic update command
  43. UpdateCommand: @UPDATE_COMMAND@
  44. UpdateOptions: @UPDATE_OPTIONS@
  45. UpdateType: @UPDATE_TYPE@
  46. # Compiler info
  47. Compiler: @CMAKE_CXX_COMPILER@
  48. # Dynamic analysis (MemCheck)
  49. PurifyCommand: @PURIFYCOMMAND@
  50. ValgrindCommand: @VALGRIND_COMMAND@
  51. ValgrindCommandOptions: @VALGRIND_COMMAND_OPTIONS@
  52. MemoryCheckCommand: @MEMORYCHECK_COMMAND@
  53. MemoryCheckCommandOptions: @MEMORYCHECK_COMMAND_OPTIONS@
  54. MemoryCheckSuppressionFile: @MEMORYCHECK_SUPPRESSIONS_FILE@
  55. # Coverage
  56. CoverageCommand: @COVERAGE_COMMAND@
  57. CoverageExtraFlags: @COVERAGE_EXTRA_FLAGS@
  58. # Cluster commands
  59. SlurmBatchCommand: @SLURM_SBATCH_COMMAND@
  60. SlurmRunCommand: @SLURM_SRUN_COMMAND@
  61. # Testing options
  62. # TimeOut is the amount of time in seconds to wait for processes
  63. # to complete during testing. After TimeOut seconds, the
  64. # process will be summarily terminated.
  65. # Currently set to 25 minutes
  66. TimeOut: @DART_TESTING_TIMEOUT@
  67. UseLaunchers: @CTEST_USE_LAUNCHERS@
  68. CurlOptions: @CTEST_CURL_OPTIONS@
  69. # warning, if you add new options here that have to do with submit,
  70. # you have to update cmCTestSubmitCommand.cxx
  71. # For CTest submissions that timeout, these options
  72. # specify behavior for retrying the submission
  73. CTestSubmitRetryDelay: @CTEST_SUBMIT_RETRY_DELAY@
  74. CTestSubmitRetryCount: @CTEST_SUBMIT_RETRY_COUNT@