From 8ebc3e06a711b3915c5787e74e67ea1a40647c9f Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 18 Oct 2013 16:26:35 -0700 Subject: [PATCH] valgrind: fix libleveldb suppression on dynamically linked leveldb (The function names don't show up here) Signed-off-by: Sage Weil (cherry picked from commit c8ec9feca1db0f95a1f5d933bfe362e400593a65) --- teuthology/task/valgrind.supp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/teuthology/task/valgrind.supp b/teuthology/task/valgrind.supp index 22836d88a1..04d40940d1 100644 --- a/teuthology/task/valgrind.supp +++ b/teuthology/task/valgrind.supp @@ -6,12 +6,19 @@ ... } { - ignore all leveldb leaks + ignore all static leveldb leaks Memcheck:Leak ... fun:*leveldb* ... } +{ + ignore all dynamic libleveldb leaks + Memcheck:Leak + ... + obj:*libleveldb.so* + ... +} { ignore libcurl leaks Memcheck:Leak -- 2.39.5