diff options
author | 2024-08-26 20:55:49 -0400 | |
---|---|---|
committer | 2024-10-23 09:38:11 +0000 | |
commit | 66fcfb845b8e588901b4f663435e9e1b30499467 (patch) | |
tree | b276598e479c3a8fe9896ee113986d0d1421130f /test | |
parent | ec906a266b958f527b9aef400a33cca26e71134a (diff) |
build: fix gcov failure on ubuntu 24.04
Type: make
Change-Id: Ieee6562de4b9f68d701c27a3c3018431b28eb3b0
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Makefile b/test/Makefile index bc5bc0cf129..79feba9165e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -393,14 +393,14 @@ COV_REM_ALT_TEST="*/plugins/hs_apps/*" "*/plugins/http/*.h" .PHONY: cov-post cov-post: wipe-cov $(BUILD_COV_DIR) - @lcov --capture \ + @lcov --ignore-errors --capture \ --directory $(VPP_BUILD_DIR) \ --output-file $(BUILD_COV_DIR)/coverage$(HS_TEST).info @test -z "$(EXTERN_COV_DIR)" || \ - lcov --capture \ + lcov --ignore-errors --capture \ --directory $(EXTERN_COV_DIR) \ --output-file $(BUILD_COV_DIR)/extern-coverage$(HS_TEST).info - @lcov --remove $(BUILD_COV_DIR)/coverage$(HS_TEST).info \ + @lcov --ignore-errors --remove $(BUILD_COV_DIR)/coverage$(HS_TEST).info \ $(COV_REM_NOT_CODE) \ $(COV_REM_DRIVERS) \ $(COV_REM_TODO_NO_TEST) \ |