DartConfiguration.tcl.in 2.6 KB

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