From 4f283b96712f7761c34ef89855cab1bf9c072598 Mon Sep 17 00:00:00 2001 From: Greg Farnum Date: Thu, 26 Mar 2015 14:13:45 -0700 Subject: [PATCH] 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 --- teuthology/task/valgrind.supp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/teuthology/task/valgrind.supp b/teuthology/task/valgrind.supp index e027384587..a131907e51 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 -- 2.39.5