mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 06:20:56 +00:00
Merge pull request #1281 from phkelley/valgrind
Improve valgrind suppressions
This commit is contained in:
commit
28db9f216d
@ -33,13 +33,13 @@ script:
|
|||||||
|
|
||||||
# Run Tests
|
# Run Tests
|
||||||
after_success:
|
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
|
# Only watch the development branch
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
- development
|
- development
|
||||||
|
|
||||||
# Notify development list when needed
|
# Notify development list when needed
|
||||||
notifications:
|
notifications:
|
||||||
irc:
|
irc:
|
||||||
|
@ -1,22 +1,44 @@
|
|||||||
{
|
{
|
||||||
ignore-zlib-errors-cond
|
ignore-zlib-errors-cond
|
||||||
Memcheck:Cond
|
Memcheck:Cond
|
||||||
obj:*libz.so*
|
obj:*libz.so*
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
ignore-giterr-set-leak
|
ignore-giterr-set-leak
|
||||||
Memcheck:Leak
|
Memcheck:Leak
|
||||||
...
|
...
|
||||||
fun:giterr_set
|
fun:giterr_set
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
ignore-git-global-state-leak
|
||||||
|
Memcheck:Leak
|
||||||
|
...
|
||||||
|
fun:git__global_state
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
ignore-openssl-ssl-leak
|
||||||
|
Memcheck:Leak
|
||||||
...
|
...
|
||||||
obj:*libssl.so*
|
obj:*libssl.so*
|
||||||
|
...
|
||||||
|
fun:ssl_setup
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
|
ignore-openssl-crypto-leak
|
||||||
|
Memcheck:Leak
|
||||||
...
|
...
|
||||||
obj:*libcrypto.so*
|
obj:*libcrypto.so*
|
||||||
|
...
|
||||||
|
fun:ssl_setup
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
ignore-openssl-crypto-cond
|
||||||
|
Memcheck:Cond
|
||||||
|
obj:*libcrypto.so*
|
||||||
|
...
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user