1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

r19344: run smbclient and cifsdd under valgrind and pass the correct configuration

to get useful backtraces in the build-farm

metze
This commit is contained in:
Stefan Metzmacher 2006-10-16 20:20:03 +00:00 committed by Gerald (Jerry) Carter
parent e1742c14a2
commit fa030e4598
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ runcopy() {
message="$1"
shift
testit "$message" $DD --debuglevel=$DEBUGLEVEL -W "$DOMAIN" -U "$USERNAME"%"$PASSWORD" \
testit "$message" $VALGRIND $DD $CONFIGURATION --debuglevel=$DEBUGLEVEL -W "$DOMAIN" -U "$USERNAME"%"$PASSWORD" \
"$@"
}

View File

@ -18,7 +18,7 @@ failed=0
runcmd() {
name="$1"
shift
testit "$name" bin/smbclient //$SERVER/tmp -W "$DOMAIN "-U"$USERNAME"%"$PASSWORD" $@
testit "$name" $VALGRIND bin/smbclient $CONFIGURATION //$SERVER/tmp -W "$DOMAIN "-U"$USERNAME"%"$PASSWORD" $@
}
incdir=`dirname $0`