ctest.1.rst 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  1. .. cmake-manual-description: CTest Command-Line Reference
  2. ctest(1)
  3. ********
  4. Synopsis
  5. ========
  6. .. parsed-literal::
  7. ctest [<options>]
  8. Description
  9. ===========
  10. The "ctest" executable is the CMake test driver program.
  11. CMake-generated build trees created for projects that use the
  12. ENABLE_TESTING and ADD_TEST commands have testing support. This
  13. program will run the tests and report results.
  14. Options
  15. =======
  16. ``-C <cfg>, --build-config <cfg>``
  17. Choose configuration to test.
  18. Some CMake-generated build trees can have multiple build
  19. configurations in the same tree. This option can be used to specify
  20. which one should be tested. Example configurations are "Debug" and
  21. "Release".
  22. ``-V,--verbose``
  23. Enable verbose output from tests.
  24. Test output is normally suppressed and only summary information is
  25. displayed. This option will show all test output.
  26. ``-VV,--extra-verbose``
  27. Enable more verbose output from tests.
  28. Test output is normally suppressed and only summary information is
  29. displayed. This option will show even more test output.
  30. ``--debug``
  31. Displaying more verbose internals of CTest.
  32. This feature will result in a large number of output that is mostly
  33. useful for debugging dashboard problems.
  34. ``--output-on-failure``
  35. Output anything outputted by the test program if the test should fail.
  36. This option can also be enabled by setting the environment variable
  37. ``CTEST_OUTPUT_ON_FAILURE``.
  38. ``-F``
  39. Enable failover.
  40. This option allows ctest to resume a test set execution that was
  41. previously interrupted. If no interruption occurred, the -F option
  42. will have no effect.
  43. ``-j <jobs>, --parallel <jobs>``
  44. Run the tests in parallel using the given number of jobs.
  45. This option tells ctest to run the tests in parallel using given
  46. number of jobs. This option can also be set by setting the
  47. environment variable ``CTEST_PARALLEL_LEVEL``.
  48. ``--test-load <level>``
  49. While running tests in parallel (e.g. with ``-j``), try not to start
  50. tests when they may cause the CPU load to pass above a given threshold.
  51. When ``ctest`` is run as a `Dashboard Client`_ this sets the
  52. ``TestLoad`` option of the `CTest Test Step`_.
  53. ``-Q,--quiet``
  54. Make ctest quiet.
  55. This option will suppress all the output. The output log file will
  56. still be generated if the --output-log is specified. Options such
  57. as --verbose, --extra-verbose, and --debug are ignored if --quiet is
  58. specified.
  59. ``-O <file>, --output-log <file>``
  60. Output to log file
  61. This option tells ctest to write all its output to a log file.
  62. ``-N,--show-only``
  63. Disable actual execution of tests.
  64. This option tells ctest to list the tests that would be run but not
  65. actually run them. Useful in conjunction with the -R and -E
  66. options.
  67. ``-L <regex>, --label-regex <regex>``
  68. Run tests with labels matching regular expression.
  69. This option tells ctest to run only the tests whose labels match the
  70. given regular expression.
  71. ``-R <regex>, --tests-regex <regex>``
  72. Run tests matching regular expression.
  73. This option tells ctest to run only the tests whose names match the
  74. given regular expression.
  75. ``-E <regex>, --exclude-regex <regex>``
  76. Exclude tests matching regular expression.
  77. This option tells ctest to NOT run the tests whose names match the
  78. given regular expression.
  79. ``-LE <regex>, --label-exclude <regex>``
  80. Exclude tests with labels matching regular expression.
  81. This option tells ctest to NOT run the tests whose labels match the
  82. given regular expression.
  83. ``-D <dashboard>, --dashboard <dashboard>``
  84. Execute dashboard test
  85. This option tells ctest to act as a CDash client and perform a
  86. dashboard test. All tests are <Mode><Test>, where Mode can be
  87. Experimental, Nightly, and Continuous, and Test can be Start,
  88. Update, Configure, Build, Test, Coverage, and Submit.
  89. ``-D <var>:<type>=<value>``
  90. Define a variable for script mode
  91. Pass in variable values on the command line. Use in conjunction
  92. with -S to pass variable values to a dashboard script. Parsing -D
  93. arguments as variable values is only attempted if the value
  94. following -D does not match any of the known dashboard types.
  95. ``-M <model>, --test-model <model>``
  96. Sets the model for a dashboard
  97. This option tells ctest to act as a CDash client where the TestModel
  98. can be Experimental, Nightly, and Continuous. Combining -M and -T
  99. is similar to -D
  100. ``-T <action>, --test-action <action>``
  101. Sets the dashboard action to perform
  102. This option tells ctest to act as a CDash client and perform some
  103. action such as start, build, test etc. Combining -M and -T is
  104. similar to -D
  105. ``--track <track>``
  106. Specify the track to submit dashboard to
  107. Submit dashboard to specified track instead of default one. By
  108. default, the dashboard is submitted to Nightly, Experimental, or
  109. Continuous track, but by specifying this option, the track can be
  110. arbitrary.
  111. ``-S <script>, --script <script>``
  112. Execute a dashboard for a configuration
  113. This option tells ctest to load in a configuration script which sets
  114. a number of parameters such as the binary and source directories.
  115. Then ctest will do what is required to create and run a dashboard.
  116. This option basically sets up a dashboard and then runs ctest -D
  117. with the appropriate options.
  118. ``-SP <script>, --script-new-process <script>``
  119. Execute a dashboard for a configuration
  120. This option does the same operations as -S but it will do them in a
  121. separate process. This is primarily useful in cases where the
  122. script may modify the environment and you do not want the modified
  123. environment to impact other -S scripts.
  124. ``-A <file>, --add-notes <file>``
  125. Add a notes file with submission
  126. This option tells ctest to include a notes file when submitting
  127. dashboard.
  128. ``-I [Start,End,Stride,test#,test#|Test file], --tests-information``
  129. Run a specific number of tests by number.
  130. This option causes ctest to run tests starting at number Start,
  131. ending at number End, and incrementing by Stride. Any additional
  132. numbers after Stride are considered individual test numbers. Start,
  133. End,or stride can be empty. Optionally a file can be given that
  134. contains the same syntax as the command line.
  135. ``-U, --union``
  136. Take the Union of -I and -R
  137. When both -R and -I are specified by default the intersection of
  138. tests are run. By specifying -U the union of tests is run instead.
  139. ``--rerun-failed``
  140. Run only the tests that failed previously
  141. This option tells ctest to perform only the tests that failed during
  142. its previous run. When this option is specified, ctest ignores all
  143. other options intended to modify the list of tests to run (-L, -R,
  144. -E, -LE, -I, etc). In the event that CTest runs and no tests fail,
  145. subsequent calls to ctest with the --rerun-failed option will run
  146. the set of tests that most recently failed (if any).
  147. ``--repeat-until-fail <n>``
  148. Require each test to run ``<n>`` times without failing in order to pass.
  149. This is useful in finding sporadic failures in test cases.
  150. ``--max-width <width>``
  151. Set the max width for a test name to output
  152. Set the maximum width for each test name to show in the output.
  153. This allows the user to widen the output to avoid clipping the test
  154. name which can be very annoying.
  155. ``--interactive-debug-mode [0|1]``
  156. Set the interactive mode to 0 or 1.
  157. This option causes ctest to run tests in either an interactive mode
  158. or a non-interactive mode. On Windows this means that in
  159. non-interactive mode, all system debug pop up windows are blocked.
  160. In dashboard mode (Experimental, Nightly, Continuous), the default
  161. is non-interactive. When just running tests not for a dashboard the
  162. default is to allow popups and interactive debugging.
  163. ``--no-label-summary``
  164. Disable timing summary information for labels.
  165. This option tells ctest not to print summary information for each
  166. label associated with the tests run. If there are no labels on the
  167. tests, nothing extra is printed.
  168. ``--build-and-test``
  169. Configure, build and run a test.
  170. This option tells ctest to configure (i.e. run cmake on), build,
  171. and or execute a test. The configure and test steps are optional.
  172. The arguments to this command line are the source and binary
  173. directories. By default this will run CMake on the Source/Bin
  174. directories specified unless --build-nocmake is specified.
  175. The --build-generator option *must* be provided to use
  176. --build-and-test. If --test-command is specified then that will be
  177. run after the build is complete. Other options that affect this
  178. mode are --build-target --build-nocmake, --build-run-dir,
  179. --build-two-config, --build-exe-dir,
  180. --build-project,--build-noclean, --build-options
  181. ``--build-target``
  182. Specify a specific target to build.
  183. This option goes with the --build-and-test option, if left out the
  184. all target is built.
  185. ``--build-nocmake``
  186. Run the build without running cmake first.
  187. Skip the cmake step.
  188. ``--build-run-dir``
  189. Specify directory to run programs from.
  190. Directory where programs will be after it has been compiled.
  191. ``--build-two-config``
  192. Run CMake twice
  193. ``--build-exe-dir``
  194. Specify the directory for the executable.
  195. ``--build-generator``
  196. Specify the generator to use.
  197. ``--build-generator-platform``
  198. Specify the generator-specific platform.
  199. ``--build-generator-toolset``
  200. Specify the generator-specific toolset.
  201. ``--build-project``
  202. Specify the name of the project to build.
  203. ``--build-makeprogram``
  204. Override the make program chosen by CTest with a given one.
  205. ``--build-noclean``
  206. Skip the make clean step.
  207. ``--build-config-sample``
  208. A sample executable to use to determine the configuration
  209. A sample executable to use to determine the configuration that
  210. should be used. e.g. Debug/Release/etc
  211. ``--build-options``
  212. Add extra options to the build step.
  213. This option must be the last option with the exception of
  214. --test-command
  215. ``--test-command``
  216. The test to run with the --build-and-test option.
  217. ``--test-output-size-passed <size>``
  218. Limit the output for passed tests to <size> bytes.
  219. ``--test-output-size-failed <size>``
  220. Limit the output for failed tests to <size> bytes.
  221. ``--test-timeout``
  222. The time limit in seconds, internal use only.
  223. ``--tomorrow-tag``
  224. Nightly or experimental starts with next day tag.
  225. This is useful if the build will not finish in one day.
  226. ``--ctest-config``
  227. The configuration file used to initialize CTest state when submitting dashboards.
  228. This option tells CTest to use different initialization file instead
  229. of CTestConfiguration.tcl. This way multiple initialization files
  230. can be used for example to submit to multiple dashboards.
  231. ``--overwrite``
  232. Overwrite CTest configuration option.
  233. By default ctest uses configuration options from configuration file.
  234. This option will overwrite the configuration option.
  235. ``--extra-submit <file>[;<file>]``
  236. Submit extra files to the dashboard.
  237. This option will submit extra files to the dashboard.
  238. ``--force-new-ctest-process``
  239. Run child CTest instances as new processes
  240. By default CTest will run child CTest instances within the same
  241. process. If this behavior is not desired, this argument will
  242. enforce new processes for child CTest processes.
  243. ``--schedule-random``
  244. Use a random order for scheduling tests
  245. This option will run the tests in a random order. It is commonly
  246. used to detect implicit dependencies in a test suite.
  247. ``--submit-index``
  248. Legacy option for old Dart2 dashboard server feature.
  249. Do not use.
  250. ``--timeout <seconds>``
  251. Set a global timeout on all tests.
  252. This option will set a global timeout on all tests that do not
  253. already have a timeout set on them.
  254. ``--stop-time <time>``
  255. Set a time at which all tests should stop running.
  256. Set a real time of day at which all tests should timeout. Example:
  257. 7:00:00 -0400. Any time format understood by the curl date parser
  258. is accepted. Local time is assumed if no timezone is specified.
  259. ``--http1.0``
  260. Submit using HTTP 1.0.
  261. This option will force CTest to use HTTP 1.0 to submit files to the
  262. dashboard, instead of HTTP 1.1.
  263. ``--no-compress-output``
  264. Do not compress test output when submitting.
  265. This flag will turn off automatic compression of test output. Use
  266. this to maintain compatibility with an older version of CDash which
  267. doesn't support compressed test output.
  268. ``--print-labels``
  269. Print all available test labels.
  270. This option will not run any tests, it will simply print the list of
  271. all labels associated with the test set.
  272. .. include:: OPTIONS_HELP.txt
  273. .. _`Dashboard Client`:
  274. Dashboard Client
  275. ================
  276. CTest can operate as a client for the `CDash`_ software quality dashboard
  277. application. As a dashboard client, CTest performs a sequence of steps
  278. to configure, build, and test software, and then submits the results to
  279. a `CDash`_ server.
  280. .. _`CDash`: http://cdash.org/
  281. Dashboard Client Steps
  282. ----------------------
  283. CTest defines an ordered list of testing steps of which some or all may
  284. be run as a dashboard client:
  285. ``Start``
  286. Start a new dashboard submission to be composed of results recorded
  287. by the following steps.
  288. See the `CTest Start Step`_ section below.
  289. ``Update``
  290. Update the source tree from its version control repository.
  291. Record the old and new versions and the list of updated source files.
  292. See the `CTest Update Step`_ section below.
  293. ``Configure``
  294. Configure the software by running a command in the build tree.
  295. Record the configuration output log.
  296. See the `CTest Configure Step`_ section below.
  297. ``Build``
  298. Build the software by running a command in the build tree.
  299. Record the build output log and detect warnings and errors.
  300. See the `CTest Build Step`_ section below.
  301. ``Test``
  302. Test the software by loading a ``CTestTestfile.cmake``
  303. from the build tree and executing the defined tests.
  304. Record the output and result of each test.
  305. See the `CTest Test Step`_ section below.
  306. ``Coverage``
  307. Compute coverage of the source code by running a coverage
  308. analysis tool and recording its output.
  309. See the `CTest Coverage Step`_ section below.
  310. ``MemCheck``
  311. Run the software test suite through a memory check tool.
  312. Record the test output, results, and issues reported by the tool.
  313. See the `CTest MemCheck Step`_ section below.
  314. ``Submit``
  315. Submit results recorded from other testing steps to the
  316. software quality dashboard server.
  317. See the `CTest Submit Step`_ section below.
  318. Dashboard Client Modes
  319. ----------------------
  320. CTest defines three modes of operation as a dashboard client:
  321. ``Nightly``
  322. This mode is intended to be invoked once per day, typically at night.
  323. It enables the ``Start``, ``Update``, ``Configure``, ``Build``, ``Test``,
  324. ``Coverage``, and ``Submit`` steps by default. Selected steps run even
  325. if the ``Update`` step reports no changes to the source tree.
  326. ``Continuous``
  327. This mode is intended to be invoked repeatedly throughout the day.
  328. It enables the ``Start``, ``Update``, ``Configure``, ``Build``, ``Test``,
  329. ``Coverage``, and ``Submit`` steps by default, but exits after the
  330. ``Update`` step if it reports no changes to the source tree.
  331. ``Experimental``
  332. This mode is intended to be invoked by a developer to test local changes.
  333. It enables the ``Start``, ``Configure``, ``Build``, ``Test``, ``Coverage``,
  334. and ``Submit`` steps by default.
  335. Dashboard Client via CTest Command-Line
  336. ---------------------------------------
  337. CTest can perform testing on an already-generated build tree.
  338. Run the ``ctest`` command with the current working directory set
  339. to the build tree and use one of these signatures::
  340. ctest -D <mode>[<step>]
  341. ctest -M <mode> [ -T <step> ]...
  342. The ``<mode>`` must be one of the above `Dashboard Client Modes`_,
  343. and each ``<step>`` must be one of the above `Dashboard Client Steps`_.
  344. CTest reads the `Dashboard Client Configuration`_ settings from
  345. a file in the build tree called either ``CTestConfiguration.ini``
  346. or ``DartConfiguration.tcl`` (the names are historical). The format
  347. of the file is::
  348. # Lines starting in '#' are comments.
  349. # Other non-blank lines are key-value pairs.
  350. <setting>: <value>
  351. where ``<setting>`` is the setting name and ``<value>`` is the
  352. setting value.
  353. In build trees generated by CMake, this configuration file is
  354. generated by the :module:`CTest` module if included by the project.
  355. The module uses variables to obtain a value for each setting
  356. as documented with the settings below.
  357. .. _`CTest Script`:
  358. Dashboard Client via CTest Script
  359. ---------------------------------
  360. CTest can perform testing driven by a :manual:`cmake-language(7)`
  361. script that creates and maintains the source and build tree as
  362. well as performing the testing steps. Run the ``ctest`` command
  363. with the current working directory set outside of any build tree
  364. and use one of these signatures::
  365. ctest -S <script>
  366. ctest -SP <script>
  367. The ``<script>`` file must call :ref:`CTest Commands` commands
  368. to run testing steps explicitly as documented below. The commands
  369. obtain `Dashboard Client Configuration`_ settings from their
  370. arguments or from variables set in the script.
  371. Dashboard Client Configuration
  372. ==============================
  373. The `Dashboard Client Steps`_ may be configured by named
  374. settings as documented in the following sections.
  375. .. _`CTest Start Step`:
  376. CTest Start Step
  377. ----------------
  378. Start a new dashboard submission to be composed of results recorded
  379. by the following steps.
  380. In a `CTest Script`_, the :command:`ctest_start` command runs this step.
  381. Arguments to the command may specify some of the step settings.
  382. The command first runs the command-line specified by the
  383. ``CTEST_CHECKOUT_COMMAND`` variable, if set, to initialize the source
  384. directory.
  385. Configuration settings include:
  386. ``BuildDirectory``
  387. The full path to the project build tree.
  388. * `CTest Script`_ variable: :variable:`CTEST_BINARY_DIRECTORY`
  389. * :module:`CTest` module variable: :variable:`PROJECT_BINARY_DIR`
  390. ``SourceDirectory``
  391. The full path to the project source tree.
  392. * `CTest Script`_ variable: :variable:`CTEST_SOURCE_DIRECTORY`
  393. * :module:`CTest` module variable: :variable:`PROJECT_SOURCE_DIR`
  394. .. _`CTest Update Step`:
  395. CTest Update Step
  396. -----------------
  397. In a `CTest Script`_, the :command:`ctest_update` command runs this step.
  398. Arguments to the command may specify some of the step settings.
  399. Configuration settings to specify the version control tool include:
  400. ``BZRCommand``
  401. ``bzr`` command-line tool to use if source tree is managed by Bazaar.
  402. * `CTest Script`_ variable: :variable:`CTEST_BZR_COMMAND`
  403. * :module:`CTest` module variable: none
  404. ``BZRUpdateOptions``
  405. Command-line options to the ``BZRCommand`` when updating the source.
  406. * `CTest Script`_ variable: :variable:`CTEST_BZR_UPDATE_OPTIONS`
  407. * :module:`CTest` module variable: none
  408. ``CVSCommand``
  409. ``cvs`` command-line tool to use if source tree is managed by CVS.
  410. * `CTest Script`_ variable: :variable:`CTEST_CVS_COMMAND`
  411. * :module:`CTest` module variable: ``CVSCOMMAND``
  412. ``CVSUpdateOptions``
  413. Command-line options to the ``CVSCommand`` when updating the source.
  414. * `CTest Script`_ variable: :variable:`CTEST_CVS_UPDATE_OPTIONS`
  415. * :module:`CTest` module variable: ``CVS_UPDATE_OPTIONS``
  416. ``GITCommand``
  417. ``git`` command-line tool to use if source tree is managed by Git.
  418. * `CTest Script`_ variable: :variable:`CTEST_GIT_COMMAND`
  419. * :module:`CTest` module variable: ``GITCOMMAND``
  420. The source tree is updated by ``git fetch`` followed by
  421. ``git reset --hard`` to the ``FETCH_HEAD``. The result is the same
  422. as ``git pull`` except that any local moficiations are overwritten.
  423. Use ``GITUpdateCustom`` to specify a different approach.
  424. ``GITInitSubmodules``
  425. If set, CTest will update the repository's submodules before updating.
  426. * `CTest Script`_ variable: :variable:`CTEST_GIT_INIT_SUBMODULES`
  427. * :module:`CTest` module variable: ``CTEST_GIT_INIT_SUBMODULES``
  428. ``GITUpdateCustom``
  429. Specify a custom command line (as a semicolon-separated list) to run
  430. in the source tree (Git work tree) to update it instead of running
  431. the ``GITCommand``.
  432. * `CTest Script`_ variable: :variable:`CTEST_GIT_UPDATE_CUSTOM`
  433. * :module:`CTest` module variable: ``CTEST_GIT_UPDATE_CUSTOM``
  434. ``GITUpdateOptions``
  435. Command-line options to the ``GITCommand`` when updating the source.
  436. * `CTest Script`_ variable: :variable:`CTEST_GIT_UPDATE_OPTIONS`
  437. * :module:`CTest` module variable: ``GIT_UPDATE_OPTIONS``
  438. ``HGCommand``
  439. ``hg`` command-line tool to use if source tree is managed by Mercurial.
  440. * `CTest Script`_ variable: :variable:`CTEST_HG_COMMAND`
  441. * :module:`CTest` module variable: none
  442. ``HGUpdateOptions``
  443. Command-line options to the ``HGCommand`` when updating the source.
  444. * `CTest Script`_ variable: :variable:`CTEST_HG_UPDATE_OPTIONS`
  445. * :module:`CTest` module variable: none
  446. ``P4Client``
  447. Value of the ``-c`` option to the ``P4Command``.
  448. * `CTest Script`_ variable: :variable:`CTEST_P4_CLIENT`
  449. * :module:`CTest` module variable: ``CTEST_P4_CLIENT``
  450. ``P4Command``
  451. ``p4`` command-line tool to use if source tree is managed by Perforce.
  452. * `CTest Script`_ variable: :variable:`CTEST_P4_COMMAND`
  453. * :module:`CTest` module variable: ``P4COMMAND``
  454. ``P4Options``
  455. Command-line options to the ``P4Command`` for all invocations.
  456. * `CTest Script`_ variable: :variable:`CTEST_P4_OPTIONS`
  457. * :module:`CTest` module variable: ``CTEST_P4_OPTIONS``
  458. ``P4UpdateCustom``
  459. Specify a custom command line (as a semicolon-separated list) to run
  460. in the source tree (Perforce tree) to update it instead of running
  461. the ``P4Command``.
  462. * `CTest Script`_ variable: none
  463. * :module:`CTest` module variable: ``CTEST_P4_UPDATE_CUSTOM``
  464. ``P4UpdateOptions``
  465. Command-line options to the ``P4Command`` when updating the source.
  466. * `CTest Script`_ variable: :variable:`CTEST_P4_UPDATE_OPTIONS`
  467. * :module:`CTest` module variable: ``CTEST_P4_UPDATE_OPTIONS``
  468. ``SVNCommand``
  469. ``svn`` command-line tool to use if source tree is managed by Subversion.
  470. * `CTest Script`_ variable: :variable:`CTEST_SVN_COMMAND`
  471. * :module:`CTest` module variable: ``SVNCOMMAND``
  472. ``SVNOptions``
  473. Command-line options to the ``SVNCommand`` for all invocations.
  474. * `CTest Script`_ variable: :variable:`CTEST_SVN_OPTIONS`
  475. * :module:`CTest` module variable: ``CTEST_SVN_OPTIONS``
  476. ``SVNUpdateOptions``
  477. Command-line options to the ``SVNCommand`` when updating the source.
  478. * `CTest Script`_ variable: :variable:`CTEST_SVN_UPDATE_OPTIONS`
  479. * :module:`CTest` module variable: ``SVN_UPDATE_OPTIONS``
  480. ``UpdateCommand``
  481. Specify the version-control command-line tool to use without
  482. detecting the VCS that manages the source tree.
  483. * `CTest Script`_ variable: :variable:`CTEST_UPDATE_COMMAND`
  484. * :module:`CTest` module variable: ``<VCS>COMMAND``
  485. when ``UPDATE_TYPE`` is ``<vcs>``, else ``UPDATE_COMMAND``
  486. ``UpdateOptions``
  487. Command-line options to the ``UpdateCommand``.
  488. * `CTest Script`_ variable: :variable:`CTEST_UPDATE_OPTIONS`
  489. * :module:`CTest` module variable: ``<VCS>_UPDATE_OPTIONS``
  490. when ``UPDATE_TYPE`` is ``<vcs>``, else ``UPDATE_OPTIONS``
  491. ``UpdateType``
  492. Specify the version-control system that manages the source
  493. tree if it cannot be detected automatically.
  494. The value may be ``bzr``, ``cvs``, ``git``, ``hg``,
  495. ``p4``, or ``svn``.
  496. * `CTest Script`_ variable: none, detected from source tree
  497. * :module:`CTest` module variable: ``UPDATE_TYPE`` if set,
  498. else ``CTEST_UPDATE_TYPE``
  499. ``UpdateVersionOnly``
  500. Specify that you want the version control update command to only
  501. discover the current version that is checked out, and not to update
  502. to a different version.
  503. * `CTest Script`_ variable: :variable:`CTEST_UPDATE_VERSION_ONLY`
  504. Additional configuration settings include:
  505. ``NightlyStartTime``
  506. In the ``Nightly`` dashboard mode, specify the "nightly start time".
  507. With centralized version control systems (``cvs`` and ``svn``),
  508. the ``Update`` step checks out the version of the software as of
  509. this time so that multiple clients choose a common version to test.
  510. This is not well-defined in distributed version-control systems so
  511. the setting is ignored.
  512. * `CTest Script`_ variable: :variable:`CTEST_NIGHTLY_START_TIME`
  513. * :module:`CTest` module variable: ``NIGHTLY_START_TIME`` if set,
  514. else ``CTEST_NIGHTLY_START_TIME``
  515. .. _`CTest Configure Step`:
  516. CTest Configure Step
  517. --------------------
  518. In a `CTest Script`_, the :command:`ctest_configure` command runs this step.
  519. Arguments to the command may specify some of the step settings.
  520. Configuration settings include:
  521. ``ConfigureCommand``
  522. Command-line to launch the software configuration process.
  523. It will be executed in the location specified by the
  524. ``BuildDirectory`` setting.
  525. * `CTest Script`_ variable: :variable:`CTEST_CONFIGURE_COMMAND`
  526. * :module:`CTest` module variable: :variable:`CMAKE_COMMAND`
  527. followed by :variable:`PROJECT_SOURCE_DIR`
  528. .. _`CTest Build Step`:
  529. CTest Build Step
  530. ----------------
  531. In a `CTest Script`_, the :command:`ctest_build` command runs this step.
  532. Arguments to the command may specify some of the step settings.
  533. Configuration settings include:
  534. ``DefaultCTestConfigurationType``
  535. When the build system to be launched allows build-time selection
  536. of the configuration (e.g. ``Debug``, ``Release``), this specifies
  537. the default configuration to be built when no ``-C`` option is
  538. given to the ``ctest`` command. The value will be substituted into
  539. the value of ``MakeCommand`` to replace the literal string
  540. ``${CTEST_CONFIGURATION_TYPE}`` if it appears.
  541. * `CTest Script`_ variable: :variable:`CTEST_CONFIGURATION_TYPE`
  542. * :module:`CTest` module variable: ``DEFAULT_CTEST_CONFIGURATION_TYPE``,
  543. initialized by the ``CMAKE_CONFIG_TYPE`` environment variable
  544. ``MakeCommand``
  545. Command-line to launch the software build process.
  546. It will be executed in the location specified by the
  547. ``BuildDirectory`` setting.
  548. * `CTest Script`_ variable: :variable:`CTEST_BUILD_COMMAND`
  549. * :module:`CTest` module variable: ``MAKECOMMAND``,
  550. initialized by the :command:`build_command` command
  551. ``UseLaunchers``
  552. For build trees generated by CMake using one of the
  553. :ref:`Makefile Generators` or the :generator:`Ninja`
  554. generator, specify whether the
  555. ``CTEST_USE_LAUNCHERS`` feature is enabled by the
  556. :module:`CTestUseLaunchers` module (also included by the
  557. :module:`CTest` module). When enabled, the generated build
  558. system wraps each invocation of the compiler, linker, or
  559. custom command line with a "launcher" that communicates
  560. with CTest via environment variables and files to report
  561. granular build warning and error information. Otherwise,
  562. CTest must "scrape" the build output log for diagnostics.
  563. * `CTest Script`_ variable: :variable:`CTEST_USE_LAUNCHERS`
  564. * :module:`CTest` module variable: ``CTEST_USE_LAUNCHERS``
  565. .. _`CTest Test Step`:
  566. CTest Test Step
  567. ---------------
  568. In a `CTest Script`_, the :command:`ctest_test` command runs this step.
  569. Arguments to the command may specify some of the step settings.
  570. Configuration settings include:
  571. ``TestLoad``
  572. While running tests in parallel (e.g. with ``-j``), try not to start
  573. tests when they may cause the CPU load to pass above a given threshold.
  574. * `CTest Script`_ variable: :variable:`CTEST_TEST_LOAD`
  575. * :module:`CTest` module variable: ``CTEST_TEST_LOAD``
  576. ``TimeOut``
  577. The default timeout for each test if not specified by the
  578. :prop_test:`TIMEOUT` test property.
  579. * `CTest Script`_ variable: :variable:`CTEST_TEST_TIMEOUT`
  580. * :module:`CTest` module variable: ``DART_TESTING_TIMEOUT``
  581. .. _`CTest Coverage Step`:
  582. CTest Coverage Step
  583. -------------------
  584. In a `CTest Script`_, the :command:`ctest_coverage` command runs this step.
  585. Arguments to the command may specify some of the step settings.
  586. Configuration settings include:
  587. ``CoverageCommand``
  588. Command-line tool to perform software coverage analysis.
  589. It will be executed in the location specified by the
  590. ``BuildDirectory`` setting.
  591. * `CTest Script`_ variable: :variable:`CTEST_COVERAGE_COMMAND`
  592. * :module:`CTest` module variable: ``COVERAGE_COMMAND``
  593. ``CoverageExtraFlags``
  594. Specify command-line options to the ``CoverageCommand`` tool.
  595. * `CTest Script`_ variable: :variable:`CTEST_COVERAGE_EXTRA_FLAGS`
  596. * :module:`CTest` module variable: ``COVERAGE_EXTRA_FLAGS``
  597. .. _`CTest MemCheck Step`:
  598. CTest MemCheck Step
  599. -------------------
  600. In a `CTest Script`_, the :command:`ctest_memcheck` command runs this step.
  601. Arguments to the command may specify some of the step settings.
  602. Configuration settings include:
  603. ``MemoryCheckCommand``
  604. Command-line tool to perform dynamic analysis. Test command lines
  605. will be launched through this tool.
  606. * `CTest Script`_ variable: :variable:`CTEST_MEMORYCHECK_COMMAND`
  607. * :module:`CTest` module variable: ``MEMORYCHECK_COMMAND``
  608. ``MemoryCheckCommandOptions``
  609. Specify command-line options to the ``MemoryCheckCommand`` tool.
  610. They will be placed prior to the test command line.
  611. * `CTest Script`_ variable: :variable:`CTEST_MEMORYCHECK_COMMAND_OPTIONS`
  612. * :module:`CTest` module variable: ``MEMORYCHECK_COMMAND_OPTIONS``
  613. ``MemoryCheckType``
  614. Specify the type of memory checking to perform.
  615. * `CTest Script`_ variable: :variable:`CTEST_MEMORYCHECK_TYPE`
  616. * :module:`CTest` module variable: ``MEMORYCHECK_TYPE``
  617. ``MemoryCheckSanitizerOptions``
  618. Specify options to sanitizers when running with a sanitize-enabled build.
  619. * `CTest Script`_ variable: :variable:`CTEST_MEMORYCHECK_SANITIZER_OPTIONS`
  620. * :module:`CTest` module variable: ``MEMORYCHECK_SANITIZER_OPTIONS``
  621. ``MemoryCheckSuppressionFile``
  622. Specify a file containing suppression rules for the
  623. ``MemoryCheckCommand`` tool. It will be passed with options
  624. appropriate to the tool.
  625. * `CTest Script`_ variable: :variable:`CTEST_MEMORYCHECK_SUPPRESSIONS_FILE`
  626. * :module:`CTest` module variable: ``MEMORYCHECK_SUPPRESSIONS_FILE``
  627. Additional configuration settings include:
  628. ``BoundsCheckerCommand``
  629. Specify a ``MemoryCheckCommand`` that is known to be command-line
  630. compatible with Bounds Checker.
  631. * `CTest Script`_ variable: none
  632. * :module:`CTest` module variable: none
  633. ``PurifyCommand``
  634. Specify a ``MemoryCheckCommand`` that is known to be command-line
  635. compatible with Purify.
  636. * `CTest Script`_ variable: none
  637. * :module:`CTest` module variable: ``PURIFYCOMMAND``
  638. ``ValgrindCommand``
  639. Specify a ``MemoryCheckCommand`` that is known to be command-line
  640. compatible with Valgrind.
  641. * `CTest Script`_ variable: none
  642. * :module:`CTest` module variable: ``VALGRIND_COMMAND``
  643. ``ValgrindCommandOptions``
  644. Specify command-line options to the ``ValgrindCommand`` tool.
  645. They will be placed prior to the test command line.
  646. * `CTest Script`_ variable: none
  647. * :module:`CTest` module variable: ``VALGRIND_COMMAND_OPTIONS``
  648. .. _`CTest Submit Step`:
  649. CTest Submit Step
  650. -----------------
  651. In a `CTest Script`_, the :command:`ctest_submit` command runs this step.
  652. Arguments to the command may specify some of the step settings.
  653. Configuration settings include:
  654. ``BuildName``
  655. Describe the dashboard client platform with a short string.
  656. (Operating system, compiler, etc.)
  657. * `CTest Script`_ variable: :variable:`CTEST_BUILD_NAME`
  658. * :module:`CTest` module variable: ``BUILDNAME``
  659. ``CDashVersion``
  660. Specify the version of `CDash`_ on the server.
  661. * `CTest Script`_ variable: none, detected from server
  662. * :module:`CTest` module variable: ``CTEST_CDASH_VERSION``
  663. ``CTestSubmitRetryCount``
  664. Specify a number of attempts to retry submission on network failure.
  665. * `CTest Script`_ variable: none,
  666. use the :command:`ctest_submit` ``RETRY_COUNT`` option.
  667. * :module:`CTest` module variable: ``CTEST_SUBMIT_RETRY_COUNT``
  668. ``CTestSubmitRetryDelay``
  669. Specify a delay before retrying submission on network failure.
  670. * `CTest Script`_ variable: none,
  671. use the :command:`ctest_submit` ``RETRY_DELAY`` option.
  672. * :module:`CTest` module variable: ``CTEST_SUBMIT_RETRY_DELAY``
  673. ``CurlOptions``
  674. Specify a semicolon-separated list of options to control the
  675. Curl library that CTest uses internally to connect to the
  676. server. Possible options are ``CURLOPT_SSL_VERIFYPEER_OFF``
  677. and ``CURLOPT_SSL_VERIFYHOST_OFF``.
  678. * `CTest Script`_ variable: :variable:`CTEST_CURL_OPTIONS`
  679. * :module:`CTest` module variable: ``CTEST_CURL_OPTIONS``
  680. ``DropLocation``
  681. The path on the dashboard server to send the submission.
  682. * `CTest Script`_ variable: :variable:`CTEST_DROP_LOCATION`
  683. * :module:`CTest` module variable: ``DROP_LOCATION`` if set,
  684. else ``CTEST_DROP_LOCATION``
  685. ``DropMethod``
  686. Specify the method by which results should be submitted to the
  687. dashboard server. The value may be ``cp``, ``ftp``, ``http``,
  688. ``https``, ``scp``, or ``xmlrpc`` (if CMake was built with
  689. support for it).
  690. * `CTest Script`_ variable: :variable:`CTEST_DROP_METHOD`
  691. * :module:`CTest` module variable: ``DROP_METHOD`` if set,
  692. else ``CTEST_DROP_METHOD``
  693. ``DropSite``
  694. The dashboard server name
  695. (for ``ftp``, ``http``, and ``https``, ``scp``, and ``xmlrpc``).
  696. * `CTest Script`_ variable: :variable:`CTEST_DROP_SITE`
  697. * :module:`CTest` module variable: ``DROP_SITE`` if set,
  698. else ``CTEST_DROP_SITE``
  699. ``DropSitePassword``
  700. The dashboard server login password, if any
  701. (for ``ftp``, ``http``, and ``https``).
  702. * `CTest Script`_ variable: :variable:`CTEST_DROP_SITE_PASSWORD`
  703. * :module:`CTest` module variable: ``DROP_SITE_PASSWORD`` if set,
  704. else ``CTEST_DROP_SITE_PASWORD``
  705. ``DropSiteUser``
  706. The dashboard server login user name, if any
  707. (for ``ftp``, ``http``, and ``https``).
  708. * `CTest Script`_ variable: :variable:`CTEST_DROP_SITE_USER`
  709. * :module:`CTest` module variable: ``DROP_SITE_USER`` if set,
  710. else ``CTEST_DROP_SITE_USER``
  711. ``IsCDash``
  712. Specify whether the dashboard server is `CDash`_ or an older
  713. dashboard server implementation requiring ``TriggerSite``.
  714. * `CTest Script`_ variable: :variable:`CTEST_DROP_SITE_CDASH`
  715. * :module:`CTest` module variable: ``CTEST_DROP_SITE_CDASH``
  716. ``ScpCommand``
  717. ``scp`` command-line tool to use when ``DropMethod`` is ``scp``.
  718. * `CTest Script`_ variable: :variable:`CTEST_SCP_COMMAND`
  719. * :module:`CTest` module variable: ``SCPCOMMAND``
  720. ``Site``
  721. Describe the dashboard client host site with a short string.
  722. (Hostname, domain, etc.)
  723. * `CTest Script`_ variable: :variable:`CTEST_SITE`
  724. * :module:`CTest` module variable: ``SITE``,
  725. initialized by the :command:`site_name` command
  726. ``TriggerSite``
  727. Legacy option to support older dashboard server implementations.
  728. Not used when ``IsCDash`` is true.
  729. * `CTest Script`_ variable: :variable:`CTEST_TRIGGER_SITE`
  730. * :module:`CTest` module variable: ``TRIGGER_SITE`` if set,
  731. else ``CTEST_TRIGGER_SITE``
  732. See Also
  733. ========
  734. .. include:: LINKS.txt