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 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 18feature.feature coverage 19 : 20 off # Disable coverage generation for the tool (default). 21 on # Enable coverage generation for the tool. 22 : incidental propagated ; 23