diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index de3a3ca2a52..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 @@ -423,6 +423,7 @@ cov-post: wipe-cov $(BUILD_COV_DIR) -o $(BUILD_COV_DIR)/coverage-filtered$(HS_TEST).info @genhtml $(BUILD_COV_DIR)/coverage-filtered$(HS_TEST).info \ --output-directory $(BUILD_COV_DIR)/html + @rm -f $(BUILD_COV_DIR)/html/cmd_line @test -z "$(EXTERN_COV_DIR)" || \ genhtml $(BUILD_COV_DIR)/extern-coverage$(HS_TEST).info \ --output-directory $(BUILD_COV_DIR)/extern-html |