]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - crypto/openssh/regress/valgrind-unit.sh
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / crypto / openssh / regress / valgrind-unit.sh
1 #!/bin/sh
2
3 UNIT_BINARY="$1"
4 shift
5 UNIT_ARGS="$@"
6
7 test "x$OBJ" = "x" && OBJ=$PWD
8
9 # This mostly replicates the logic in test-exec.sh for running the
10 # regress tests under valgrind.
11 VG_TEST=`basename $UNIT_BINARY`
12 VG_LOG="$OBJ/valgrind-out/${VG_TEST}.%p"
13 VG_OPTS="--track-origins=yes --leak-check=full --log-file=${VG_LOG}"
14 VG_OPTS="$VG_OPTS --trace-children=yes"
15 VG_PATH="valgrind"
16 if [ "x$VALGRIND_PATH" != "x" ]; then
17         VG_PATH="$VALGRIND_PATH"
18 fi
19
20 exec $VG_PATH $VG_OPTS $UNIT_BINARY $UNIT_ARGS