blob: 91a9f45b3a6a8cff001100a6b02193ac1f58104c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/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
|