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
|
# Suppress conditional jump problems in ld-2.13.so on wheezy.
{
supp_ld_2_13_so_wheezy
Memcheck:Cond
fun:index
fun:expand_dynamic_string_token
...
}
# Suppress overlap problems in STL priority queue's pop from Seqan's
# topological sort.
{
supp_stl_priority_queue_pop_if_len_is_one
Memcheck:Overlap
fun:memcpy
fun:_ZSt10__pop_heapIN9__gnu_cxx17__normal_iteratorIPSt4pairImjESt6vectorIS3_SaIS3_EEEESt4lessIS3_EEvT_SB_SB_T0_
fun:_ZSt8pop_heapIN9__gnu_cxx17__normal_iteratorIPSt4pairImjESt6vectorIS3_SaIS3_EEEESt4lessIS3_EEvT_SB_T0_
fun:_ZNSt14priority_queueISt4pairImjESt6vectorIS1_SaIS1_EESt4lessIS1_EE3popEv
fun:_ZN5seqan15topologicalSort*
...
fun:main
}
# Suppress "still reachable" memory from libgomp, the library with the runtime
# for OpenMP in GCC.
{
supp_libgomp_set_num_threads
Memcheck:Leak
fun:malloc
fun:gomp_malloc
fun:gomp_new_icv
...
fun:main
}
{
supp_libgomp_team_start
Memcheck:Leak
fun:malloc
fun:gomp_malloc
fun:gomp_team_start
...
fun:main
}
# Suppress warning in zlib. Also see the zlib FAQ:
# https://www.zlib.net/zlib_faq.html#faq36
{
supp_zlib_gzclose
Memcheck:Cond
...
fun:deflate
fun:gzclose
...
fun:main
}
{
Unitialized memory read in zlib's inflateReset2 (not a problem)
Memcheck:Cond
fun:inflateReset2
fun:inflateInit2_
...
fun:main
}
|