1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-03-05 15:05:48 +02:00
pgbackrest/test/src/valgrind.suppress
David Steele 52b0b81976 Add storageInfoList() to get detailed info about all entries in a path.
The function provides all the file/path/link information required to build a backup manifest.

Also update storageInfo() to provide the same information for a single file.
2019-04-23 19:33:55 -04:00

69 lines
1.2 KiB
Plaintext

{
ignore_libcrypto_leaks
Memcheck:Leak
...
obj:*/libcrypto.so*
}
# This is an issue on CentOS 7 after calling getaddrinfo() even if freeaddrinfo() is called as well
{
ignore_free_error_after_getaddrinfo
Memcheck:Free
fun:free
fun:__libc_freeres
fun:_vgnU_freeres
fun:__run_exit_handlers
fun:exit
...
}
# This only seems to be an issue on Ubuntu 12.04 -- probably due to the old version of Valgrind
{
ignore_libcrypto_uninit_cond_jump
Memcheck:Cond
...
obj:*/libcrypto.so*
}
{
ignore_libperl_leaks
Memcheck:Leak
...
obj:*/libperl.so*
}
{
ignore_libperl_uninit_cond_jump
Memcheck:Cond
...
obj:*/libperl.so*
}
# This only seems to be an issue on Ubuntu 12.04 -- probably due to the old version of Valgrind
{
ignore_libz_uninit_cond_jump
Memcheck:Cond
fun:inflateReset2
...
obj:*/libz.so*
}
# This only seems to be an issue on Ubuntu 12.04 -- probably due to the old version of Valgrind
{
ignore_getgrgid_leak
Memcheck:Leak
fun:malloc
...
fun:getgrgid
...
}
# This only seems to be an issue on Ubuntu 12.04 -- probably due to the old version of Valgrind
{
ignore_getpwuid_leak
Memcheck:Leak
fun:malloc
...
fun:getpwuid
...
}