From 092f450f0e1ba58098d50799db51b1a5b4217053 Mon Sep 17 00:00:00 2001 From: Ivan Ivanets Date: Tue, 1 Apr 2025 20:30:34 +0300 Subject: [PATCH] tests: update lcov ignore_error param Type: test Add the value 'negative' into ignore_error param to fix lcov error for test-cov. Change-Id: Ia10f70315e9f9f24bfa1d177a7293b65c3889fd2 Signed-off-by: Ivan Ivanets --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 37f8e2db18b..6196be80a18 100644 --- a/test/Makefile +++ b/test/Makefile @@ -402,7 +402,7 @@ endif LCOV_VERSION=$(shell lcov --version | sed -E 's/^lcov: LCOV version ([0-9]+)[.].*/\1/') LCOV_IGNORE_ERRORS= ifeq ($(LCOV_VERSION),2) -LCOV_IGNORE_ERRORS=--ignore-errors unused,empty,mismatch,gcov +LCOV_IGNORE_ERRORS=--ignore-errors unused,empty,mismatch,gcov,negative endif .PHONY: cov-post -- 2.16.6