aboutsummaryrefslogtreecommitdiff
path: root/testcases/valgrind.supp
blob: 150e3a6325e21591a4e9b194667fd285c03a1190 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#
# 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
    ...
}