mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-01 15:05:49 +00:00
Improve valgrind suppressions
This commit is contained in:
parent
cfc39f5078
commit
5026aec2b3
@ -33,13 +33,13 @@ script:
|
||||
|
||||
# Run Tests
|
||||
after_success:
|
||||
- valgrind --leak-check=full --show-reachable=yes --suppressions=../libgit2_clar.supp ./libgit2_clar -ionline
|
||||
- valgrind --num-callers=30 --leak-check=full --show-reachable=yes --suppressions=../libgit2_clar.supp ./libgit2_clar -ionline
|
||||
|
||||
# Only watch the development branch
|
||||
branches:
|
||||
only:
|
||||
- development
|
||||
|
||||
|
||||
# Notify development list when needed
|
||||
notifications:
|
||||
irc:
|
||||
|
@ -1,22 +1,44 @@
|
||||
{
|
||||
ignore-zlib-errors-cond
|
||||
Memcheck:Cond
|
||||
obj:*libz.so*
|
||||
ignore-zlib-errors-cond
|
||||
Memcheck:Cond
|
||||
obj:*libz.so*
|
||||
}
|
||||
|
||||
{
|
||||
ignore-giterr-set-leak
|
||||
Memcheck:Leak
|
||||
...
|
||||
fun:giterr_set
|
||||
ignore-giterr-set-leak
|
||||
Memcheck:Leak
|
||||
...
|
||||
fun:giterr_set
|
||||
}
|
||||
|
||||
{
|
||||
ignore-git-global-state-leak
|
||||
Memcheck:Leak
|
||||
...
|
||||
fun:git__global_state
|
||||
}
|
||||
|
||||
{
|
||||
ignore-openssl-ssl-leak
|
||||
Memcheck:Leak
|
||||
...
|
||||
obj:*libssl.so*
|
||||
...
|
||||
fun:ssl_setup
|
||||
}
|
||||
|
||||
{
|
||||
ignore-openssl-crypto-leak
|
||||
Memcheck:Leak
|
||||
...
|
||||
obj:*libcrypto.so*
|
||||
...
|
||||
fun:ssl_setup
|
||||
}
|
||||
|
||||
{
|
||||
ignore-openssl-crypto-cond
|
||||
Memcheck:Cond
|
||||
obj:*libcrypto.so*
|
||||
...
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user