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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
|
# libmodulemd valgrind suppressions file
#
# This provides a list of suppressions for libmodulemd for valgrind for
# the false positives that are reported when running under valgrind.
#
# Pass this suppression file to valgrind using --suppressions=/path/to/this-file.supp
#
# See http://valgrind.org/docs/manual/manual-core.html#manual-core.suppress
# for details about the format of this file.
#
# Also see https://wiki.wxwidgets.org/Parse_valgrind_suppressions.sh for a
# handy script to extract suppression entries from the valgrind test log.
#
{
Handle PyMalloc confusing valgrind
Memcheck:Leak
fun:malloc
...
fun:_PyObject_GC_New
}
{
Handle PyMalloc confusing valgrind
Memcheck:Leak
fun:malloc
...
fun:_PyObject_GC_NewVar
}
{
Handle PyMalloc confusing valgrind
Memcheck:Leak
fun:realloc
...
fun:_PyObject_GC_Resize
}
{
Handle PyMalloc confusing valgrind
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
...
fun:_PyMem_RawWcsdup
}
{
Handle PyMalloc confusing valgrind
Memcheck:Cond
fun:PyUnicode_Decode
fun:PyUnicode_FromEncodedObject
}
{
Handle PyMalloc confusing valgrind
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
fun:g_malloc
fun:g_strdup
...
fun:PyObject_SetAttr
}
{
Handle Python 3.9 PyMalloc confusing valgrind
Memcheck:Leak
fun:malloc
fun:PyThread_allocate_lock
...
fun:Py_InitializeFromConfig
...
fun:Py_BytesMain
}
{
Python3 Unicode uninitialized value
Memcheck:Cond
fun:PyUnicode_Decode
...
fun:_PyEval_EvalFrameDefault
}
{
Mageia string insert leak
Memcheck:Leak
match-leak-kinds: definite
fun:realloc
...
fun:g_string_insert_len
}
{
Mageia girepo leak
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
...
fun:g_irepository_find_by_gtype
}
{
Mageia loaddynamicmodule leak
Memcheck:Leak
match-leak-kinds: definite
fun:malloc
...
fun:_PyImport_LoadDynamicModuleWithSpec
}
|