Codebase list i3-gaps / c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/main testcases / valgrind.supp
c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/main

Tree @c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/main (Download .tar.gz)

valgrind.supp @c27d3c5f-f0ce-4133-8bb8-e28e9cd8adb8/mainraw · 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
    ...
}