From 699ce5369b9698f358032c79d2b2f2739233aea5 Mon Sep 17 00:00:00 2001 From: "Dirk-Jan C. Binnema" Date: Wed, 8 Jun 2022 07:51:23 +0300 Subject: [PATCH] build: turn off helgrind for now Seems we're hitting a false alarm... --- Makefile.meson | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile.meson b/Makefile.meson index b60ad8ba..37c35097 100644 --- a/Makefile.meson +++ b/Makefile.meson @@ -70,10 +70,12 @@ test-valgrind: $(BUILDDIR) --wrap='valgrind --leak-check=full --error-exitcode=1' \ --timeout-multiplier 100 -test-helgrind: $(BUILDDIR) - @cd $(BUILDDIR); $(MESON) test \ - --wrap='valgrind --tool=helgrind --error-exitcode=1' \ - --timeout-multiplier 100 +# we do _not_ pass helgrind; but this seems to be a false-alarm +# https://gitlab.gnome.org/GNOME/glib/-/issues/2662 +# test-helgrind: $(BUILDDIR) +# @cd $(BUILDDIR); TEST=HELGRIND $(MESON) test \ +# --wrap='valgrind --tool=helgrind --error-exitcode=1' \ +# --timeout-multiplier 100 benchmark: $(BUILDDIR) $(NINJA) -C $(BUILDDIR) benchmark