summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-04-12 18:59:04 +0100
committerRichard W.M. Jones <rjones@redhat.com>2012-04-13 10:18:53 +0100
commit6356f587c7288adae0d53f3fbdd5610b2b62d14b (patch)
tree5cfde1f6a5bf0b245dd62ab73f4a61a0de755eb3
parent806d792ac7e5a23f55bce6cdb2d2e59d78502ae6 (diff)
downloadlibguestfs-6356f587c7288adae0d53f3fbdd5610b2b62d14b.tar.gz
libguestfs-6356f587c7288adae0d53f3fbdd5610b2b62d14b.tar.xz
libguestfs-6356f587c7288adae0d53f3fbdd5610b2b62d14b.zip
extra-tests: Add suppression for memory leak in FUSE.
(cherry picked from commit a97e9429ea888b4732bbbcfdd85b9368dd6ef96c)
-rw-r--r--tests/extra/suppressions9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/extra/suppressions b/tests/extra/suppressions
index 566f9479..8ccc4f0e 100644
--- a/tests/extra/suppressions
+++ b/tests/extra/suppressions
@@ -176,3 +176,12 @@
fun:gnutls_global_init
fun:virInitialize
}
+
+# FUSE leaks the per-thread context (although the code looks
+# like it attempts to clean it up).
+{
+ fuse_leak
+ Memcheck:Leak
+ fun:malloc
+ fun:fuse_get_context_internal
+}