tests/valgrind-python.supp: Ignore PyGObject leaks

They are unrelated to fprint itself, so let's ignore them
This commit is contained in:
Marco Trevisan (Treviño)
2026-02-10 06:28:14 +01:00
parent 1ee7df6cf2
commit cc41f805f2

View File

@@ -95,3 +95,24 @@
fun:realloc
obj:/usr/lib/*/libpython3*.so.*
}
{
ignore__pygobject_possible_leaks
Memcheck:Leak
match-leak-kinds: possible
...
obj:/usr/lib*/python*/site-packages/gi/_gi.cpython-*.so
obj:/usr/lib*/libpython3.*.so.*
}
{
ignore__pygobject_instance_leaks
Memcheck:Leak
match-leak-kinds: definite
...
fun:g_type_create_instance
fun:gi_info_new_full
...
obj:/usr/lib*/python*/site-packages/gi/_gi.cpython-*.so
obj:/usr/lib*/libpython3.*.so.*
}