From d58797e98c82ced16fbc0a213fd104fb72a9de08 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Thu, 26 Feb 2009 00:56:47 -0400 Subject: The -B, -G, -V reports now show rounding amounts This way, if the running total is off by a penny or two due to rounding of one or more commodities in the account, the user will see it. This commit also reorganizes the testing code a bit, which I did after adding the ninth test series (ConfirmTests), to validate the new rounding code. --- test/fullcheck.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 test/fullcheck.sh (limited to 'test/fullcheck.sh') diff --git a/test/fullcheck.sh b/test/fullcheck.sh new file mode 100755 index 00000000..5763278c --- /dev/null +++ b/test/fullcheck.sh @@ -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