diff options
author | John Wiegley <johnw@newartisans.com> | 2012-03-17 16:22:03 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2012-03-17 16:22:03 -0500 |
commit | 06934e8dd68a0dea1f113911b01dc6b7ed406330 (patch) | |
tree | 41986abc1563af969476ebb93c00aa20a14f21e5 | |
parent | 815501f8b50b0889b4a51020cdbbd514b4c8b975 (diff) | |
download | fork-ledger-06934e8dd68a0dea1f113911b01dc6b7ed406330.tar.gz fork-ledger-06934e8dd68a0dea1f113911b01dc6b7ed406330.tar.bz2 fork-ledger-06934e8dd68a0dea1f113911b01dc6b7ed406330.zip |
libgmalloc is no longer available on OS X Lion
-rwxr-xr-x | test/fullcheck.sh | 18 | ||||
-rwxr-xr-x | tools/times.sh | 4 |
2 files changed, 11 insertions, 11 deletions
diff --git a/test/fullcheck.sh b/test/fullcheck.sh index f8c671e0..f607f2d9 100755 --- a/test/fullcheck.sh +++ b/test/fullcheck.sh @@ -5,14 +5,14 @@ if [ -x /usr/bin/valgrind -o -x /opt/local/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 -export MALLOC_PROTECT_BEFORE=1 -export MALLOC_FILL_SPACE=1 -export MALLOC_STRICT_SIZE=1 +#export MallocGuardEdges=1 +#export MallocScribble=1 +#export MallocPreScribble=1 +#export MallocCheckHeapStart=100 +#export MallocCheckHeapEach=100 +#export DYLD_INSERT_LIBRARIES=/usr/lib/libgmalloc.dylib +#export MALLOC_PROTECT_BEFORE=1 +#export MALLOC_FILL_SPACE=1 +#export MALLOC_STRICT_SIZE=1 exec $VALGRIND $@ diff --git a/tools/times.sh b/tools/times.sh index 444da993..d15431bc 100755 --- a/tools/times.sh +++ b/tools/times.sh @@ -2,5 +2,5 @@ time test/RegressTests.py ./ledger test/regress time test/RegressTests.py ./ledger test/regress --verify -time test/RegressTests.py ./ledger test/regress --gmalloc -time test/RegressTests.py ./ledger test/regress --verify --gmalloc +#time test/RegressTests.py ./ledger test/regress --gmalloc +#time test/RegressTests.py ./ledger test/regress --verify --gmalloc |