From 0c7168e259036d9c9e7571d5a3e2bfecde67c9bd Mon Sep 17 00:00:00 2001 From: james Date: Sun, 25 Oct 2009 15:44:28 +0000 Subject: Change to doval valgrind script. The openvpn command parameter is now implied, so new usage is: ./doval [openvpn parms] instead of: ./doval ./openvpn [openvpn parms] git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@5104 e7ae566f-a301-0410-adde-c780ea21d3b5 --- debug/valgrind-suppress | 11 +++++++++++ doval | 4 +++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/debug/valgrind-suppress b/debug/valgrind-suppress index b72d56d..d7de12f 100644 --- a/debug/valgrind-suppress +++ b/debug/valgrind-suppress @@ -1169,3 +1169,14 @@ fun:main } +{ + + Memcheck:Cond + fun:BN_mod_inverse +} + +{ + + Memcheck:Cond + fun:BN_div +} diff --git a/doval b/doval index af840ee..e215510 100755 --- a/doval +++ b/doval @@ -1,2 +1,4 @@ #!/bin/bash -valgrind --tool=memcheck --error-limit=no --suppressions=debug/valgrind-suppress --gen-suppressions=all --leak-check=full --show-reachable=yes --num-callers=32 $* +PROGDIR=`dirname $0` +unset LD_LIBRARY_PATH +valgrind --tool=memcheck --error-limit=no --suppressions=$PROGDIR/debug/valgrind-suppress --gen-suppressions=all --leak-check=full --show-reachable=yes --num-callers=32 $PROGDIR/openvpn "$@" -- cgit v1.2.3