aboutsummaryrefslogtreecommitdiff
path: root/.valgrind.supp
blob: 22a3334783f970310ecd888b5f5a6b092524cbb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# Valgrind suppression file for zenserver
#
# Usage:
#   valgrind --suppressions=.valgrind.supp --show-mismatched-frees=no \
#       build/linux/x86_64/debug/zenserver --malloc=ansi
#
# --show-mismatched-frees=no is needed because EASTL's allocator uses
# aligned new[] (via posix_memalign) but deallocates via unaligned
# operator delete[]. Valgrind 3.22 reports this as an alignment mismatch
# which cannot be suppressed via suppression files.