Codebase list i3-gaps / 93d29c39-f9ec-4785-a2d5-eb670a71f546/upstream testcases / valgrind.supp
93d29c39-f9ec-4785-a2d5-eb670a71f546/upstream

Tree @93d29c39-f9ec-4785-a2d5-eb670a71f546/upstream (Download .tar.gz)

valgrind.supp @93d29c39-f9ec-4785-a2d5-eb670a71f546/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
    ...
}