-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added suppression rules and suppressions file to contrib/valgrind #393
Added suppression rules and suppressions file to contrib/valgrind #393
Conversation
You can use wildcards for all our external dependencies. However, for leaks flagged for pgagroal you need to fix them |
@jesperpedersen PTAL About This Commit
|
There must be stacks in 3rd party libraries that we need to exclude - you had those before. So, the Also, squash your commits - https://www.git-tower.com/learn/git/faq/git-squash |
682ba8b
to
0e5b41a
Compare
Can you add a |
c5926b3
to
df22b16
Compare
@jesperpedersen PTAL |
There are still 3rd party traces,
Also add yourself to the |
Modified AUTHORS file
d214c03
to
2e8defc
Compare
- added suppression rules in contrib/valgrind/pgagroal.supp file - added README for valgrind support in pgagroal - modified AUTHOR file
f9d421d
to
c41d7fa
Compare
- added suppression rules in contrib/valgrind/pgagroal.supp file - added README for valgrind support in pgagroal - modified AUTHOR file
b6f0f78
to
0ed3534
Compare
- Added suppression rules in contrib/valgrind/pgagroal.supp file - Added README page for valgrind support - Modified AUTHORS file
0ed3534
to
981b4ff
Compare
@jesperpedersen PTAL |
Merged. Thanks for your contribution ! And, welcome to the community ! |
WORKING IN PROGRESS
@jesperpedersen Kindly review the pull request, Thank you!
About This Commit
main(int argc, char** argv)
function inmain.c
that leads tomalloc()
orcalloc()
orrealloc()
.match-leak-kinds: all
to track all kinds of memory leaks likedefinite
,indirect
,possible
andreachable
Provide feedback on
(...)
in suppression rules to avoid redundancy; for example:The above code can be compressed to ->
(There are many such cases)