aboutsummaryrefslogtreecommitdiffstats
path: root/extras/lcov
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2020-04-27 18:38:36 -0400
committerFlorin Coras <florin.coras@gmail.com>2020-04-28 20:55:20 +0000
commit37b445468e45b537621269fc1e375f26ca2100ee (patch)
tree1efda3780e406ae1a55c3e09cb878d897fc785b9 /extras/lcov
parentbfb377ce790dc5c44c7868beadb774c59e1d043e (diff)
vppinfra: improve test coverage
Bonus corner-case bugfix in bitmap.h, found during the exercise. Issue dates from 2001 or thereabouts. Please review this specific change carefully. lcov_post: filter system include directories and generated files in build-root Type: improvement Signed-off-by: Dave Barach <dave@barachs.net> Change-Id: Iaa0b63e9dc571dfe3d992197ac49ba4d93403c61
Diffstat (limited to 'extras/lcov')
-rwxr-xr-xextras/lcov/lcov_post5
1 files changed, 4 insertions, 1 deletions
diff --git a/extras/lcov/lcov_post b/extras/lcov/lcov_post
index f439796cbf3..1aaf9865d24 100755
--- a/extras/lcov/lcov_post
+++ b/extras/lcov/lcov_post
@@ -6,4 +6,7 @@ cd build-root
rm -rf html
mkdir html
lcov --no-checksum --directory . --capture --output-file out.info
-genhtml out.info -o html
+lcov --remove out.info \
+ "/usr/include/*" "*/build-root/*" "/opt/*" "/usr/lib/*" \
+ -o filtered.info
+genhtml filtered.info -o html