Fix (well, loosen up) the valgrind suppression rules
- The previous rules far too specific to glibc + gcc with certain optimization levels, eg relying on parse_auxv() getting inlined and when it does not, the suppression rules would no longer match.
This commit is contained in:
parent
a29e5f9894
commit
66ed9fc616
|
@ -7,28 +7,32 @@
|
|||
{
|
||||
defaultMachine_strdup
|
||||
Memcheck:Addr1
|
||||
fun:__GI_strlen
|
||||
...
|
||||
fun:strdup
|
||||
...
|
||||
fun:defaultMachine
|
||||
}
|
||||
|
||||
{
|
||||
defaultMachine_memcpy1
|
||||
Memcheck:Addr1
|
||||
fun:__GI_memcpy
|
||||
fun:*memcpy
|
||||
...
|
||||
fun:defaultMachine
|
||||
}
|
||||
|
||||
{
|
||||
defaultMachine_memcpy2
|
||||
Memcheck:Addr2
|
||||
fun:__GI_memcpy
|
||||
fun:*memcpy
|
||||
...
|
||||
fun:defaultMachine
|
||||
}
|
||||
|
||||
{
|
||||
defaultMachine_memcpy4
|
||||
Memcheck:Addr4
|
||||
fun:__GI_memcpy
|
||||
fun:*memcpy
|
||||
...
|
||||
fun:defaultMachine
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue