From 854ee52028fc2fccc42079dbd8ae73e7f161f410 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Thu, 21 Feb 2019 23:13:33 -0600 Subject: [PATCH] Add feature for code coverage information instrumentation. Fixes #396 --- src/tools/features/coverage-feature.jam | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/tools/features/coverage-feature.jam diff --git a/src/tools/features/coverage-feature.jam b/src/tools/features/coverage-feature.jam new file mode 100644 index 000000000..80ef3122e --- /dev/null +++ b/src/tools/features/coverage-feature.jam @@ -0,0 +1,12 @@ +# Copyright 2019 Rene Rivera +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +# What kind of coverage information to generate. + +import feature ; + +feature.feature coverage + : off all test profile + : propagated optional ;