mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
8175e98029
Change-Id: Ic2e06e448fce1d91422b711abf663b9253009a53 Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: David Disseldorp <ddiss@samba.org> Autobuild-User(master): David Disseldorp <ddiss@samba.org> Autobuild-Date(master): Wed Apr 2 13:07:24 CEST 2014 on sn-devel-104
18 lines
281 B
Bash
Executable File
18 lines
281 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: test_wbinfo_simple.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
|