DartConfiguration.tcl.in 2.7 KB

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