From 78e40a018fd24e486af6683ed088cd0cfd6f527a Mon Sep 17 00:00:00 2001 From: Detlev Casanova Date: Fri, 20 Oct 2023 14:46:23 -0400 Subject: [PATCH] dev-tools: Add glib valgrind suppressions The local glib subproject doesn't exist so the glib/glib.supp file cannot be included. As it is needed for the do_lookup_by_name() function call, let's add the system wide suppression file so that its version matches the installed glib version. Part-of: --- subprojects/gst-devtools/validate/launcher/apps/gstcheck.py | 1 + 1 file changed, 1 insertion(+) diff --git a/subprojects/gst-devtools/validate/launcher/apps/gstcheck.py b/subprojects/gst-devtools/validate/launcher/apps/gstcheck.py index f96b8691d0..0d80994961 100644 --- a/subprojects/gst-devtools/validate/launcher/apps/gstcheck.py +++ b/subprojects/gst-devtools/validate/launcher/apps/gstcheck.py @@ -84,6 +84,7 @@ class GstCheckTest(MesonTest): def get_valgrind_suppressions(self): result = super().get_valgrind_suppressions() result.extend(get_gst_build_valgrind_suppressions()) + result.append("/usr/share/glib-2.0/valgrind/glib.supp") return result