]> git.sur5r.net Git - i3/i3/blob - testcases/valgrind.supp
Merge pull request #3430 from Synray/aspect_ratio
[i3/i3] / testcases / valgrind.supp
1 #
2 # Valgrind suppression file for i3 testcases
3 #
4 # Format specification:
5 # http://valgrind.org/docs/manual/manual-core.html#manual-core.suppress
6 #
7
8 #
9 # GLib
10 #
11 {
12     Ignore fundamental GType registration
13     Memcheck:Leak
14     ...
15     fun:g_type_register_fundamental
16     ...
17 }
18
19 {
20     Ignore static GType registration
21     Memcheck:Leak
22     match-leak-kinds: possible
23     ...
24     fun:g_type_register_static
25     ...
26 }
27
28 {
29     Ignore GObject init function
30     Memcheck:Leak
31     match-leak-kinds: possible
32     ...
33     obj:/usr/lib/libgobject-2.0*
34     ...
35     fun:call_init.part.0
36     ...
37 }