Codebase list i3-gaps / c08c03d1-3991-4794-b68c-54a2ef0427eb/upstream testcases / valgrind.supp
c08c03d1-3991-4794-b68c-54a2ef0427eb/upstream

Tree @c08c03d1-3991-4794-b68c-54a2ef0427eb/upstream (Download .tar.gz)

valgrind.supp @c08c03d1-3991-4794-b68c-54a2ef0427eb/upstreamraw · history · blame

#
# Valgrind suppression file for i3 testcases
#
# Format specification:
# http://valgrind.org/docs/manual/manual-core.html#manual-core.suppress
#

#
# GLib
#
{
    Ignore fundamental GType registration
    Memcheck:Leak
    ...
    fun:g_type_register_fundamental
    ...
}

{
    Ignore static GType registration
    Memcheck:Leak
    match-leak-kinds: possible
    ...
    fun:g_type_register_static
    ...
}

{
    Ignore GObject init function
    Memcheck:Leak
    match-leak-kinds: possible
    ...
    obj:/usr/lib/libgobject-2.0*
    ...
    fun:call_init.part.0
    ...
}