ledger/tools/fullcheck
2009-02-02 17:47:27 -04:00

15 lines
295 B
Bash
Executable file

#!/bin/sh
VALGRIND=''
if [ -x /usr/bin/valgrind ]; then
VALGRIND=valgrind
fi
export MallocGuardEdges=1
export MallocScribble=1
export MallocPreScribble=1
export MallocCheckHeapStart=100
export MallocCheckHeapEach=100
export DYLD_INSERT_LIBRARIES=/usr/lib/libgmalloc.dylib
exec $VALGRIND $@