diff options
author | Damien Miller <djm@mindrot.org> | 2015-02-26 01:58:22 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-02-26 23:55:55 +0100 |
commit | bd58853102cee739f0e115e6d4b5334332ab1442 (patch) | |
tree | c214663c1fa4b28cc687faba24183f36085a3141 /regress/valgrind-unit.sh | |
parent | upstream commit (diff) | |
download | openssh-bd58853102cee739f0e115e6d4b5334332ab1442.tar.xz openssh-bd58853102cee739f0e115e6d4b5334332ab1442.zip |
valgrind support
Diffstat (limited to 'regress/valgrind-unit.sh')
-rwxr-xr-x | regress/valgrind-unit.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/regress/valgrind-unit.sh b/regress/valgrind-unit.sh new file mode 100755 index 000000000..433cb069a --- /dev/null +++ b/regress/valgrind-unit.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +UNIT_BINARY="$1" +shift +UNIT_ARGS="$@" + +test "x$OBJ" = "x" && OBJ=$PWD + +# This mostly replicates the logic in test-exec.sh for running the +# regress tests under valgrind. +VG_TEST=`basename $UNIT_BINARY` +VG_LOG="$OBJ/valgrind-out/${VG_TEST}.%p" +VG_OPTS="--track-origins=yes --leak-check=full --log-file=${VG_LOG}" +VG_OPTS="$VG_OPTS --trace-children=yes" +VG_PATH="valgrind" +if [ "x$VALGRIND_PATH" != "x" ]; then + VG_PATH="$VALGRIND_PATH" +fi + +exec $VG_PATH $VG_OPTS $UNIT_BINARY $UNIT_ARGS |