1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
# librepo suppressions for valgrind
#
# http://wiki.wxwidgets.org/Valgrind_Suppression_File_Howto
#
# To have valgrind use this file use --suppressions=/path/to/valgrind.supp
#
# Format of this file is:
# {
# name_of_suppression
# tool_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)
# }
#
# tool_name:
# Memcheck, Addrcheck, Callgrind, ... (and other valgrind tools)
# supp_kinds for Memcheck are:
# Leak Free Cond Param
# Value1 Value2 Value4 Value8 Value16
# Addr1 Addr2 Addr4 Addr8 Addr16
# optional extra info is:
# if Param: name of system call param
# if Free: name of free-ing fn
# caller line starts with:
#
# 'fun' for function calls
# 'obj' for shared object
# '...' is the frame-level wildcard - matches zero or more fun: or obj: lines
#
# Example:
# {
# gdk_set_locale
# Memcheck:Leak
# ...
# fun:gdk_set_locale
# }
{
openssl-supp-load-compressions
Memcheck:Leak
fun:malloc
fun:CRYPTO_malloc
...
fun:load_builtin_compressions
fun:SSL_COMP_get_compression_methods
fun:SSL_library_init
}
{
gpgme-static-get-engine-info
Memcheck:Leak
fun:malloc
...
fun:gpgme_get_engine_info
}
{
gpgme-static-set-engine-info
Memcheck:Leak
fun:malloc
...
fun:_gpgme_set_engine_info
fun:gpgme_set_engine_info
}
{
gpgme-static-set-locale
Memcheck:Leak
fun:malloc
fun:strdup
fun:gpgme_set_locale
}
|