From 3e594ec78010601754546f1c024b9eded2349091 Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Tue, 12 Dec 2017 16:38:54 -0500 Subject: [PATCH] valgrind: added suppression for cython constants Signed-off-by: Jason Dillaman --- teuthology/task/install/valgrind.supp | 36 +++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/teuthology/task/install/valgrind.supp b/teuthology/task/install/valgrind.supp index 5bc59b4897..2609c6b44b 100644 --- a/teuthology/task/install/valgrind.supp +++ b/teuthology/task/install/valgrind.supp @@ -445,3 +445,39 @@ ... fun:PyObject_Call } + +{ + rados cython constants + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:PyObject_Malloc + fun:PyCode_New + fun:__Pyx_InitCachedConstants + fun:initrados + fun:_PyImport_LoadDynamicModule + ... + fun:PyImport_ImportModuleLevel + ... + fun:PyObject_Call + fun:PyEval_CallObjectWithKeywords + fun:PyEval_EvalFrameEx +} + +{ + rbd cython constants + Memcheck:Leak + match-leak-kinds: definite + fun:malloc + fun:PyObject_Malloc + fun:PyCode_New + fun:__Pyx_InitCachedConstants + fun:initrbd + fun:_PyImport_LoadDynamicModule + ... + fun:PyImport_ImportModuleLevel + ... + fun:PyObject_Call + fun:PyEval_CallObjectWithKeywords + fun:PyEval_EvalFrameEx +} -- 2.39.5