From 191b19f0e1bc2f63af3451d18ca029786c98f89a Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sun, 17 Aug 2003 17:18:49 +0000 Subject: [PATCH] valgrind memory-checker suppression file git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9106 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/valgrind-gnucash.supp | 50 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 src/valgrind-gnucash.supp diff --git a/src/valgrind-gnucash.supp b/src/valgrind-gnucash.supp new file mode 100644 index 0000000000..b9503ec0f7 --- /dev/null +++ b/src/valgrind-gnucash.supp @@ -0,0 +1,50 @@ + +# FILE: valgrind-gnucash.supp +# +# FUNCTION: This file is a valgrind 'suppression' file, used to +# get valgrind to not report certain errors that we aren't +# interested in. +# +# valgrind is a memory allocation debugging tool. See the +# file ./HACKING for instructions on how to run gnucash with +# valgrind +# +# HISTORY: created aug 2003 linas vepstas + + +##----------------------------------------------------------------------## + +# Format of this file is: +# { +# name_of_suppression +# skin_name:supp_kind +# (optional extra info for some suppression types) +# caller0 name, or /name/of/so/file.so +# caller1 name, or ditto +# (optionally: caller2 name) +# (optionally: caller3 name) +# } +# +# For memcheck, the supp_kinds are: +# +# Param Value1 Value2 Value4 Value8 Value16 +# Free Addr1 Addr2 Addr4 Addr8 Addr16 +# Cond (previously known as Value0) +# +# and the optional extra info is: +# if Param: name of system call param +# if Free: name of free-ing fn) + +{ + libguile.so.12(Cond) + Memcheck:Cond + obj:/usr/lib/libguile.so.12.3.0 +} + +{ + libguile.so.12(Value4) + Memcheck:Value4 + obj:/usr/lib/libguile.so.12.3.0 +} + +# ##----------------------------------------------------------------------##