diff options
-rw-r--r-- | tests/extra/suppressions | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/extra/suppressions b/tests/extra/suppressions index 1b2f11af..a87b1a66 100644 --- a/tests/extra/suppressions +++ b/tests/extra/suppressions @@ -190,10 +190,18 @@ } # FUSE leaks the per-thread context (although the code looks -# like it attempts to clean it up). +# like it attempts to clean it up). In older fuse, it uses +# malloc. In newer fuse it uses calloc. { - fuse_leak + fuse_leak_1 Memcheck:Leak fun:malloc fun:fuse_get_context_internal } + +{ + fuse_leak_2 + Memcheck:Leak + fun:calloc + fun:fuse_get_context_internal +} |