From bf1deaffd5485f16a2e11d540bd20d0e51075a15 Mon Sep 17 00:00:00 2001 From: Karol Latecki Date: Wed, 11 Jan 2023 07:47:13 +0100 Subject: [PATCH] autotest: remove app/spdk_lspci from coverage Remove app/spdk_lspci as it is used only for enumerating devices behind VMD endpoints. VMD is not run in usual set of CI tests due to lack of adequate hardware, thus spdk_lspci is never used. Signed-off-by: Karol Latecki Change-Id: I08c94ff5d17faf6aebf18caed1f985e5304ba9a5 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16236 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 fc2478fae..8a9d80d50 100755 --- a/autotest.sh +++ b/autotest.sh @@ -376,6 +376,7 @@ if hash lcov && ! [[ "$CC_TYPE" == *"clang"* ]]; then $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 + $LCOV -q -r $out/cov_total.info '*/app/spdk_lspci/*' -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