From 888ea5207b18dbb414d6a6f1a8a9030b7999edd0 Mon Sep 17 00:00:00 2001 From: Karol Latecki Date: Wed, 11 Jan 2023 07:43:19 +0100 Subject: [PATCH] autotest: remove vmd examples from coverage SPDK CI does not have proper hardware to run VMD tests or apps for usual set of tests. Moreover, these examples are not used anywhere in test directory so they would always have zero coverage. Change-Id: I5c101d9f8fd6dcb06703efd5d5b4922def05417f Signed-off-by: Karol Latecki Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16235 Tested-by: SPDK CI Jenkins Reviewed-by: Konrad Sztyber Reviewed-by: Tomasz Zawadzki --- autotest.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/autotest.sh b/autotest.sh index c15094dc2..fc2478fae 100755 --- a/autotest.sh +++ b/autotest.sh @@ -375,6 +375,7 @@ if hash lcov && ! [[ "$CC_TYPE" == *"clang"* ]]; then $LCOV -q -a $out/cov_base.info -a $out/cov_test.info -o $out/cov_total.info $LCOV -q -r $out/cov_total.info '*/dpdk/*' -o $out/cov_total.info $LCOV -q -r $out/cov_total.info '/usr/*' -o $out/cov_total.info + $LCOV -q -r $out/cov_total.info '*/examples/vmd/*' -o $out/cov_total.info owner=$(stat -c "%U" .) sudo -u $owner git clean -f "*.gcda" rm -f cov_base.info cov_test.info OLD_STDOUT OLD_STDERR