mirror of
https://github.com/samba-team/samba.git
synced 2025-09-04 09:44:20 +03:00
s3:tests: Reformat test_wbinfo_lookuprids_cache.sh
shfmt -f source3/script/| xargs shfmt -w -p -i 0 -fn Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org>
This commit is contained in:
committed by
Günther Deschner
parent
a73b4bf870
commit
c9f328b718
@@ -3,13 +3,13 @@
|
|||||||
WBINFO="$VALGRIND ${WBINFO:-$BINDIR/wbinfo}"
|
WBINFO="$VALGRIND ${WBINFO:-$BINDIR/wbinfo}"
|
||||||
samba_tdbtool=tdbtool
|
samba_tdbtool=tdbtool
|
||||||
if test -x $BINDIR/tdbtool; then
|
if test -x $BINDIR/tdbtool; then
|
||||||
samba_tdbtool=$BINDIR/tdbtool
|
samba_tdbtool=$BINDIR/tdbtool
|
||||||
fi
|
fi
|
||||||
TDBTOOL="${TDBTOOL:-$samba_tdbtool}"
|
TDBTOOL="${TDBTOOL:-$samba_tdbtool}"
|
||||||
|
|
||||||
samba_tdbdump=tdbdump
|
samba_tdbdump=tdbdump
|
||||||
if test -x $BINDIR/tdbdump; then
|
if test -x $BINDIR/tdbdump; then
|
||||||
samba_tdbdump=$BINDIR/tdbdump
|
samba_tdbdump=$BINDIR/tdbdump
|
||||||
fi
|
fi
|
||||||
TDBDUMP="${TDBDUMP:-$samba_tdbdump}"
|
TDBDUMP="${TDBDUMP:-$samba_tdbdump}"
|
||||||
|
|
||||||
@@ -17,15 +17,15 @@ NET="$VALGRIND ${NET:-$BINDIR/net}"
|
|||||||
|
|
||||||
cache="$LOCK_DIR"/winbindd_cache.tdb
|
cache="$LOCK_DIR"/winbindd_cache.tdb
|
||||||
|
|
||||||
incdir=`dirname $0`/../../../testprogs/blackbox
|
incdir=$(dirname $0)/../../../testprogs/blackbox
|
||||||
. $incdir/subunit.sh
|
. $incdir/subunit.sh
|
||||||
|
|
||||||
testit "flush" "$NET" "cache" "flush" || failed=`expr $failed + 1`
|
testit "flush" "$NET" "cache" "flush" || failed=$(expr $failed + 1)
|
||||||
testit "lookuprids1" "$WBINFO" "-R" "512,12345" || failed=`expr $failed + 1`
|
testit "lookuprids1" "$WBINFO" "-R" "512,12345" || failed=$(expr $failed + 1)
|
||||||
|
|
||||||
key=$("$TDBDUMP" "$cache" | grep ^key.*NDR.*/16/ | cut -d\" -f2)
|
key=$("$TDBDUMP" "$cache" | grep ^key.*NDR.*/16/ | cut -d\" -f2)
|
||||||
|
|
||||||
testit "delete" "$TDBTOOL" "$cache" delete "$key"
|
testit "delete" "$TDBTOOL" "$cache" delete "$key"
|
||||||
testit "lookuprids2" "$WBINFO" "-R" "512,12345" || failed=`expr $failed + 1`
|
testit "lookuprids2" "$WBINFO" "-R" "512,12345" || failed=$(expr $failed + 1)
|
||||||
|
|
||||||
testok $0 $failed
|
testok $0 $failed
|
||||||
|
Reference in New Issue
Block a user