From 3f07906e2f3444b09b77b0a62c3a82d14090b2b7 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 25 Jan 2009 01:49:42 -0400 Subject: Made 'make fullcheck' work for all the new unit tests. --- fullcheck | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 fullcheck (limited to 'fullcheck') diff --git a/fullcheck b/fullcheck new file mode 100755 index 00000000..5763278c --- /dev/null +++ b/fullcheck @@ -0,0 +1,15 @@ +#!/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 $@ -- cgit v1.2.3