From d0fb670c60b81bc0616c71776bb9bdddea1ebcad Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Sat, 11 Aug 2012 07:47:25 +0100 Subject: tests/extra: Add workaround for memory leak in libvirt. See: https://bugzilla.redhat.com/show_bug.cgi?id=847429 (cherry picked from commit 04b475b41476b75ef3851fdd093a9868df0c7357) --- tests/extra/suppressions | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/tests/extra/suppressions b/tests/extra/suppressions index 8ccc4f0e..1b2f11af 100644 --- a/tests/extra/suppressions +++ b/tests/extra/suppressions @@ -170,13 +170,25 @@ # corresponding gnutls_global_deinit function because of # thread-safety issues (in GnuTLS). { - libvirt_leak + libvirt_leak_1 Memcheck:Leak ... fun:gnutls_global_init fun:virInitialize } +# RHBZ#847429 +{ + libvirt_leak_2 + Memcheck:Leak + ... + fun:tryLoadOne + fun:VBoxCGlueInit + fun:vboxRegister + fun:virInitialize + fun:init_libguestfs +} + # FUSE leaks the per-thread context (although the code looks # like it attempts to clean it up). { -- cgit