diff options
author | Guillem Jover <guillem@debian.org> | 2014-04-25 01:31:44 +0200 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2014-04-26 18:24:45 +0200 |
commit | 54c36750fefd670885d161716b08f2cf1a662e61 (patch) | |
tree | e5499171f34b395cddc115d9062e877470513425 | |
parent | abf7e757c1fc9c8e12fd1b4546ddc7ff64f394cb (diff) | |
download | dpkg-54c36750fefd670885d161716b08f2cf1a662e61.tar.gz |
build: Enable back lcov branch coverage
This got disabled by default starting with lcov 1.10, enable it back
to get the full coverage report.
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 8fd65ff50..eb7a785f7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,7 +93,7 @@ doc-clean: .PHONY: coverage coverage-clean if COVERAGE_ENABLED -LCOV_OPTS = -q --rc geninfo_checksum=1 +LCOV_OPTS = -q --rc geninfo_checksum=1 --rc lcov_branch_coverage=1 LCOV_CAPTURE_OPTS = $(LCOV_OPTS) --no-recursion \ -d $(top_builddir)/lib/dpkg \ -d $(top_builddir)/src \ |