From 9548caa60817673704fb633a2ca9fdb58b6d89a4 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Wed, 31 May 2017 17:08:55 -0700 Subject: [PATCH] autotest: ignore coverage info for DPDK Fixes coverage after addition of the DPDK submodule. Change-Id: I03e2a4b61d9648e49c8f267e32879e3f2580e27a Signed-off-by: Daniel Verkamp Reviewed-on: https://review.gerrithub.io/363309 Tested-by: SPDK Automated Test System Reviewed-by: Ben Walker --- autotest.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/autotest.sh b/autotest.sh index 08fbe023a..6434deef4 100755 --- a/autotest.sh +++ b/autotest.sh @@ -142,6 +142,7 @@ if hash lcov; then # generate coverage data and combine with baseline $LCOV -q -c -d $src -t "$(hostname)" -o cov_test.info $LCOV -q -a cov_base.info -a cov_test.info -o $out/cov_total.info + $LCOV -q -r $out/cov_total.info 'dpdk/*' -o $out/cov_total.info git clean -f "*.gcda" rm -f cov_base.info cov_test.info fi