From: Greg Farnum Date: Thu, 26 Mar 2015 21:13:45 +0000 (-0700) Subject: valgrind: ignore lttng warning on un-cleaned-up state X-Git-Tag: 1.1.0~980^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F457%2Fhead;p=teuthology.git valgrind: ignore lttng warning on un-cleaned-up state This appears to have come from dca722ec7b2a7fc9214844ec92310074b5cb2faa, which merged in support for use of lttng ust functions on fork. Valgrind started warning on a Leak_StillReachable with lttng_ust_init in the function call trace. Hopefully this is specific enough that we don't mask out any other lttng errors. Fixes: #11247 Signed-off-by: Greg Farnum --- diff --git a/teuthology/task/valgrind.supp b/teuthology/task/valgrind.supp index e0273845..a131907e 100644 --- a/teuthology/task/valgrind.supp +++ b/teuthology/task/valgrind.supp @@ -235,3 +235,12 @@ ... fun:exit } +{ + lttng appears to not clean up state + Memcheck:Leak + ... + fun:lttng_ust_baddr_statedump_init + fun:lttng_ust_init + fun:call_init.part.0 + ... +} \ No newline at end of file