From f4e2b3e5b0b1daf7d27986915b9a460ad3ab3a45 Mon Sep 17 00:00:00 2001 From: jgromes Date: Fri, 7 Feb 2025 21:22:32 +0100 Subject: [PATCH] [CI] Ignore geninfo errors --- extras/test/unit/coverage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/test/unit/coverage.sh b/extras/test/unit/coverage.sh index f3606c67..50dc91bb 100755 --- a/extras/test/unit/coverage.sh +++ b/extras/test/unit/coverage.sh @@ -6,7 +6,7 @@ rm -rf $filename.* lcov --capture --directory build --output-file "${filename}.info" # filter out boost and C++ standard library -lcov --remove "${filename}.info" "/usr/*/boost/*" "/usr/include/c++/*" --output-file "${filename}.info" +lcov --remove "${filename}.info" "/usr/*/boost/*" "/usr/include/c++/*" --ignore-errors mismatch --output-file "${filename}.info" # generate HTML genhtml "${filename}.info" --output-directory "${filename}.report"