]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/tools/build/src/tools/features/coverage-feature.jam
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / coverage-feature.jam
CommitLineData
92f5a8d4
TL
1# Copyright 2019 Rene Rivera
2# Copyright 2019 Hans Dembinski
3# Distributed under the Boost Software License, Version 1.0.
4# (See accompanying file LICENSE_1_0.txt or copy at
5# http://www.boost.org/LICENSE_1_0.txt)
6
7import feature ;
8
f67539c2
TL
9#| tag::doc[]
10
11[[bbv2.builtin.features.coverage]]`coverage`::
12*Allowed values:* `off`, `on`.
13+
14Enables code instrumentation to generate coverage data during execution.
15
16|# # end::doc[]
17
92f5a8d4
TL
18feature.feature coverage
19 :
20 off # Disable coverage generation for the tool (default).
21 on # Enable coverage generation for the tool.
22 : incidental propagated ;