From 917d5691e1cbd096fb6430ddf7e4887de4e8cded Mon Sep 17 00:00:00 2001 From: "ben@SALILAB.ORG" Date: Tue, 10 Jul 2012 20:49:09 +0000 Subject: [PATCH] Don't complain about possible memory leaks in the Python allocator or dynamic module loader. git-svn-id: https://svn.salilab.org/imp/trunk@14795 e91f8c7b-0e32-4433-a9ac-4502d39a4eab --- tools/valgrind-python.supp | 40 +++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/tools/valgrind-python.supp b/tools/valgrind-python.supp index 0c9974da09..c5a0620b52 100644 --- a/tools/valgrind-python.supp +++ b/tools/valgrind-python.supp @@ -690,4 +690,42 @@ obj:/usr/lib64/libpython2.7.so.1.0 fun:PyObject_Call obj:/usr/lib64/libpython2.7.so.1.0 -} \ No newline at end of file +} + +{ + + Memcheck:Addr8 + fun:bcmp + fun:fillin_rpath +} + +{ + + Memcheck:Leak + fun:_Znwm + fun:_GLOBAL__sub_I_Writer.cpp + fun:call_init.part.0 + fun:_dl_init +} + +{ + + Memcheck:Leak + fun:malloc + fun:PyObject_Malloc +} + +{ + + Memcheck:Leak + fun:malloc + ... + fun:PyString_InternInPlace +} + +{ + + Memcheck:Leak + fun:malloc + fun:SwigPyClientData_New +}