summaryrefslogtreecommitdiff
path: root/source3/script/tests/test_wbinfo_s3.sh
blob: 860e7c5afce25a879c7f0e18c157ea5fe3e09444 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

if [ $# -lt 1 ]; then
cat <<EOF
Usage: test_wbinfo_s3.sh <wbinfo args>
EOF
exit 1;
fi

ADDARGS="$*"

test x"$TEST_FUNCTIONS_SH" != x"INCLUDED" && {
incdir=`dirname $0`/../../../testprogs/blackbox
. $incdir/subunit.sh
}

testit "wbinfo" $VALGRIND $BINDIR/wbinfo $ADDARGS || failed=`expr $failed + 1`

testok $0 $failed