1== Running valgrind
2
3This distro ships with a valgrind suppressions file that suppresses leaks that
4occur from inside the Perl core as well as leaks from other modules.
5
6You can valgrind with a command like this:
7
8    ./Build && \
9    valgrind --leak-check=full --num-callers=50 --suppressions=./valgrind.supp \
10        -- perl -Mblib -I ../MaxMind-DB-Reader-perl/lib/ t/MaxMind/DB/Reader.t
11
12This assumes you have the MaxMind-DB-Reader-perl repo checked out in the
13parent directory.
14