[Spice-commits] server/tests

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Fri Apr 3 13:58:20 UTC 2020


 server/tests/valgrind/spice.supp |    9 +++++++++
 1 file changed, 9 insertions(+)

New commits:
commit 595132dca812e408b7841786f947d28321d577f2
Author: Frediano Ziglio <fziglio at redhat.com>
Date:   Fri Apr 3 14:42:53 2020 +0100

    ci: Fix for test-set-ticket leak detection
    
    This suppression was present in former glib.supp version however
    the suppression in glib.supp was updated to only catch "reachable"
    leaks.
    In early stages and few objects the leak could be detected as
    "possible".
    
    Signed-off-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/server/tests/valgrind/spice.supp b/server/tests/valgrind/spice.supp
index 88ccfe60..bc85445a 100644
--- a/server/tests/valgrind/spice.supp
+++ b/server/tests/valgrind/spice.supp
@@ -80,3 +80,12 @@
 	fun:g_socket_client_connect
 	fun:fake_client_connect_tls
 }
+
+{
+    g-type-register-static-possible
+    Memcheck:Leak
+    match-leak-kinds:possible
+    fun:malloc
+    ...
+    fun:g_type_register_static
+}


More information about the Spice-commits mailing list