mirror of
https://github.com/samba-team/samba.git
synced 2025-01-14 19:24:43 +03:00
2839391c7d
we no longer . this file into other shell scripts, so we don't need this check any more. Andrew Bartlett
18 lines
280 B
Bash
Executable File
18 lines
280 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: test_wbinfo_s3.sh <wbinfo args>
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
ADDARGS="$*"
|
|
|
|
incdir=`dirname $0`/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
testit "wbinfo" $VALGRIND $BINDIR/wbinfo $ADDARGS || failed=`expr $failed + 1`
|
|
|
|
testok $0 $failed
|