diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-14 11:00:44 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-10-14 11:00:44 -0500 |
commit | 52abde22130dc37d6ab7d0f3dc6e4a8f97d990ed (patch) | |
tree | 4d743ef95a66d34d4079a51af1d20617ed04c04c /.valgrindrc | |
parent | aec0842632ea32fec9939c221fb5554d1900a3a5 (diff) | |
download | horizon-52abde22130dc37d6ab7d0f3dc6e4a8f97d990ed.tar.gz horizon-52abde22130dc37d6ab7d0f3dc6e4a8f97d990ed.tar.bz2 horizon-52abde22130dc37d6ab7d0f3dc6e4a8f97d990ed.tar.xz horizon-52abde22130dc37d6ab7d0f3dc6e4a8f97d990ed.zip |
tests: Add Valgrind support and suppression file
Diffstat (limited to '.valgrindrc')
-rw-r--r-- | .valgrindrc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.valgrindrc b/.valgrindrc new file mode 100644 index 0000000..6ed5787 --- /dev/null +++ b/.valgrindrc @@ -0,0 +1,16 @@ +--demangle=yes +--error-exitcode=1 +--show-error-list=yes +--default-suppressions=yes +--suppressions=tests/valgrind.supp +--alignment=16 +--redzone-size=128 +--read-var-info=yes +--leak-check=full +--leak-resolution=high +--show-leak-kinds=all +--leak-check-heuristics=all +--undef-value-errors=yes +--track-origins=yes +--keep-stacktraces=alloc-and-free +--show-mismatched-frees=yes |