]> sourceware.org Git - lvm2.git/commitdiff
makefiles: ignore negative errors for lcov 1226500360
authorZdenek Kabelac <zkabelac@redhat.com>
Mon, 25 Mar 2024 13:34:39 +0000 (14:34 +0100)
committerZdenek Kabelac <zkabelac@redhat.com>
Mon, 25 Mar 2024 13:46:23 +0000 (14:46 +0100)
Makefile.in

index d30f6e7fd4e01b68108da9dd011b8b053152acc2..ff5aabfdd71af34ba454c49c633651f86a51b911 100644 (file)
@@ -194,10 +194,10 @@ ifneq ("$(GENHTML)", "")
 lcov:
        $(RM) -rf $(LCOV_REPORTS_DIR)
        $(MKDIR_P) $(LCOV_REPORTS_DIR)
-       $(LCOV) --capture --directory $(top_builddir) --ignore-errors source \
+       $(LCOV) --capture --directory $(top_builddir) --ignore-errors source,negative \
                --output-file $(LCOV_REPORTS_DIR)/out.info
        -test ! -s $(LCOV_REPORTS_DIR)/out.info || \
-               $(GENHTML) -o $(LCOV_REPORTS_DIR) --ignore-errors source \
+               $(GENHTML) -o $(LCOV_REPORTS_DIR) --ignore-errors source,negative \
                $(LCOV_REPORTS_DIR)/out.info
 endif
 
This page took 0.032025 seconds and 5 git commands to generate.