cmake/Help/command/ctest_coverage.rst

47 lines
1.6 KiB
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
ctest_coverage
--------------
2015-08-17 11:37:30 +02:00
Perform the :ref:`CTest Coverage Step` as a :ref:`Dashboard Client`.
2014-08-03 19:52:23 +02:00
::
2015-08-17 11:37:30 +02:00
ctest_coverage([BUILD <build-dir>] [APPEND]
[LABELS <label>...]
[RETURN_VALUE <result-var>]
2016-10-30 18:24:19 +01:00
[CAPTURE_CMAKE_ERROR <result-var]
2015-08-17 11:37:30 +02:00
[QUIET]
)
2014-08-03 19:52:23 +02:00
2015-08-17 11:37:30 +02:00
Collect coverage tool results and stores them in ``Coverage.xml``
for submission with the :command:`ctest_submit` command.
2014-08-03 19:52:23 +02:00
2015-08-17 11:37:30 +02:00
The options are:
2014-08-03 19:52:23 +02:00
2015-08-17 11:37:30 +02:00
``BUILD <build-dir>``
Specify the top-level build directory. If not given, the
:variable:`CTEST_BINARY_DIRECTORY` variable is used.
``APPEND``
2016-10-30 18:24:19 +01:00
Mark ``Coverage.xml`` for append to results previously submitted to a
2015-08-17 11:37:30 +02:00
dashboard server since the last :command:`ctest_start` call.
Append semantics are defined by the dashboard server in use.
2016-10-30 18:24:19 +01:00
This does *not* cause results to be appended to a ``.xml`` file
produced by a previous call to this command.
2015-08-17 11:37:30 +02:00
``LABELS``
Filter the coverage report to include only source files labeled
with at least one of the labels specified.
``RETURN_VALUE <result-var>``
Store in the ``<result-var>`` variable ``0`` if coverage tools
ran without error and non-zero otherwise.
2016-10-30 18:24:19 +01:00
``CAPTURE_CMAKE_ERROR <result-var>``
Store in the ``<result-var>`` variable -1 if there are any errors running
the command and prevent ctest from returning non-zero if an error occurs.
2015-08-17 11:37:30 +02:00
``QUIET``
Suppress any CTest-specific non-error output that would have been
printed to the console otherwise. The summary indicating how many
lines of code were covered is unaffected by this option.