summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_net_cred_change.sh
blob: 9013d079d33c572c681080c1bee5a7a1fe8dc401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

if [ $# -lt 1 ]; then
cat <<EOF
Usage: test_net_cred_change.sh CONFIGURATION
EOF
exit 1;
fi

incdir=`dirname $0`/../../../testprogs/blackbox
. $incdir/subunit.sh
testit "first change" $VALGRIND $BINDIR/wbinfo -c || failed =`expr $failed + 1`
testit "first join" $VALGRIND $BINDIR/net rpc testjoin $@ || failed =`expr $failed + 1`
testit "second change" $VALGRIND $BINDIR/wbinfo -c || failed =`expr $failed + 1`

testok $0 $failed