mirror of
https://github.com/samba-team/samba.git
synced 2025-01-06 13:18:07 +03:00
e652a764df
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>
13 lines
343 B
Bash
Executable File
13 lines
343 B
Bash
Executable File
#!/bin/sh
|
|
|
|
WBINFO="$VALGRIND ${WBINFO:-$BINDIR/wbinfo} $CONFIGURATION"
|
|
NET="$VALGRIND ${NET:-$BINDIR/net} $CONFIGURATION"
|
|
TEST_INT=$(dirname $0)/test_wbinfo_sids2xids_int.py
|
|
|
|
incdir=$(dirname $0)/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
testit "sids2xids" ${TEST_INT} ${WBINFO} ${NET} || failed=$(expr $failed + 1)
|
|
|
|
testok $0 $failed
|