]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/tools/build/src/tools/features/coverage-feature.jam
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / boost / tools / build / src / tools / features / coverage-feature.jam
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.txt or copy at
5 # https://www.bfgroup.xyz/b2/LICENSE.txt)
6
7 import feature ;
8
9 #| tag::doc[]
10
11 [[bbv2.builtin.features.coverage]]`coverage`::
12 *Allowed values:* `off`, `on`.
13 +
14 Enables code instrumentation to generate coverage data during execution.
15
16 |# # end::doc[]
17
18 feature.feature coverage
19 :
20 off # Disable coverage generation for the tool (default).
21 on # Enable coverage generation for the tool.
22 : incidental propagated ;