build: better coverage/valgrind targets

This commit is contained in:
Dirk-Jan C. Binnema 2023-07-11 00:30:59 +03:00
parent 6f69f5d482
commit 4a405ff4d4
1 changed files with 30 additions and 18 deletions

View File

@ -18,7 +18,8 @@
V ?= 0 V ?= 0
BUILDDIR ?= $(CURDIR)/build BUILDDIR ?= $(CURDIR)/build
COVERAGE_BUILDDIR ?= $(CURDIR)/build-coverage BUILDDIR_COVERAGE ?= $(CURDIR)/build-coverage
BUILDDIR_VALGRIND ?= $(CURDIR)/build-valgrind
GENHTML ?= genhtml GENHTML ?= genhtml
LCOV ?= lcov LCOV ?= lcov
@ -42,7 +43,7 @@ MESON_FLAGS:=$(MESON_FLAGS) '-Dbuildtype=debug' \
'-Dcpp_std=c++20' '-Dcpp_std=c++20'
endif endif
.PHONY: all .PHONY: all build-valgrind
.PHONY: check test test-verbose-if-fail test-valgrind test-helgrind .PHONY: check test test-verbose-if-fail test-valgrind test-helgrind
.PHONY: benchmark coverage .PHONY: benchmark coverage
.PHONY: dist install uninstall clean distclean .PHONY: dist install uninstall clean distclean
@ -72,7 +73,8 @@ uninstall: $(BUILDDIR)
@$(NINJA) -C $(BUILDDIR) uninstall @$(NINJA) -C $(BUILDDIR) uninstall
clean: clean:
@rm -rf $(BUILDDIR) $(COVERAGE_BUILDDIR) @rm -rf $(BUILDDIR) $(BUILDDIR_COVERAGE) $(BUILDDIR_VALGRIND)
@rm -rf compile_commands.json
# #
# below targets are just for development/testing/debugging. They may or # below targets are just for development/testing/debugging. They may or
@ -81,38 +83,48 @@ clean:
test-verbose-if-fail: all test-verbose-if-fail: all
$(MESON) test -C $(BUILDDIR) || $(MESON) test -C $(BUILDDIR) --verbose $(MESON) test -C $(BUILDDIR) || $(MESON) test -C $(BUILDDIR) --verbose
build-valgrind: $(BUILDDIR_VALGRIND)
@$(MESON) compile -C $(BUILDDIR_VALGRIND) $(VERBOSE)
$(BUILDDIR_VALGRIND):
@$(MESON) setup --buildtype=debug $(BUILDDIR_VALGRIND)
vg_opts:=--enable-debuginfod=no --leak-check=full --error-exitcode=1 vg_opts:=--enable-debuginfod=no --leak-check=full --error-exitcode=1
test-valgrind: export G_SLICE=always-malloc test-valgrind: export G_SLICE=always-malloc
test-valgrind: export G_DEBUG=gc-friendly test-valgrind: export G_DEBUG=gc-friendly
test-valgrind: $(BUILDDIR) test-valgrind: build-valgrind
@cd $(BUILDDIR); $(MESON) test \ @$(MESON) test -C $(BUILDDIR_VALGRIND) \
--wrap="$(VALGRIND) $(vg_opts)" \ --wrap="$(VALGRIND) $(vg_opts)" \
--timeout-multiplier 100 --timeout-multiplier 100
check-valgrind: test-valgrind
# we do _not_ pass helgrind; but this seems to be a false-alarm # we do _not_ pass helgrind; but this seems to be a false-alarm
# https://gitlab.gnome.org/GNOME/glib/-/issues/2662 # https://gitlab.gnome.org/GNOME/glib/-/issues/2662
# test-helgrind: $(BUILDDIR) test-helgrind: $(BUILDDIR_VALGRIND)
# @cd $(BUILDDIR); TEST=HELGRIND $(MESON) test \ $(MESON) -C $(BUILDDIR_VALGRIND) test \
# --wrap='valgrind --tool=helgrind --error-exitcode=1' \ --wrap="$(VALGRIND) --tool=helgrind --error-exitcode=1" \
# --timeout-multiplier 100 --timeout-multiplier 100
check-helgrind: test-helgrind
benchmark: $(BUILDDIR) benchmark: $(BUILDDIR)
$(NINJA) -C $(BUILDDIR) benchmark $(NINJA) -C $(BUILDDIR) benchmark
$(COVERAGE_BUILDDIR): $(BUILDDIR_COVERAGE):
$(MESON) setup -Db_coverage=true --buildtype=debug $(COVERAGE_BUILDDIR) $(MESON) setup -Db_coverage=true --buildtype=debug $(BUILDDIR_COVERAGE)
covfile:=$(COVERAGE_BUILDDIR)/meson-logs/coverage.info covfile:=$(BUILDDIR_COVERAGE)/meson-logs/coverage.info
# generate by hand, meson's built-ins are unflexible # generate by hand, meson's built-ins are unflexible
coverage: $(COVERAGE_BUILDDIR) coverage: $(BUILDDIR_COVERAGE)
@$(MESON) test -C $(COVERAGE_BUILDDIR) $(VERBOSE) @$(MESON) test -C $(BUILDDIR_COVERAGE) $(VERBOSE)
$(LCOV) --capture --directory . --output-file $(covfile) $(LCOV) --capture --directory . --output-file $(covfile)
@$(LCOV) --remove $(covfile) '/usr/*' '*guile*' '*thirdparty*' '*/tests/*' '*mime-object*' --output $(covfile) @$(LCOV) --remove $(covfile) '/usr/*' '*guile*' '*thirdparty*' '*/tests/*' '*mime-object*' --output $(covfile)
@$(LCOV) --remove $(covfile) '*mu/mu/*' --output $(covfile) @$(LCOV) --remove $(covfile) '*mu/mu/*' --output $(covfile)
@mkdir -p $(COVERAGE_BUILDDIR)/meson-logs/coverage @mkdir -p $(BUILDDIR_COVERAGE)/meson-logs/coverage
@$(GENHTML) $(covfile) --output-directory $(COVERAGE_BUILDDIR)/meson-logs/coverage/ @$(GENHTML) $(covfile) --output-directory $(BUILDDIR_COVERAGE)/meson-logs/coverage/
@echo "coverage report at: file://$(COVERAGE_BUILDDIR)/meson-logs/coverage/index.html" @echo "coverage report at: file://$(BUILDDIR_COVERAGE)/meson-logs/coverage/index.html"
dist: $(BUILDDIR) dist: $(BUILDDIR)
$(MESON) dist -C $(BUILDDIR) $(VERBOSE) $(MESON) dist -C $(BUILDDIR) $(VERBOSE)