summaryrefslogtreecommitdiff
path: root/source3/script/tests/test_net_s3.sh
blob: 073a5e2c588f06e9493feceb3fc4ffeb70da09c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh

# tests for the "net" command

incdir=`dirname $0`
. $incdir/test_functions.sh

failed=0

net_misc() {
	echo "Running misc tests"
	$SCRIPTDIR/test_net_misc.sh \
	|| failed=`expr $failed + $?`
}

net_registry() {
	echo "Running local registry tests"
	$SCRIPTDIR/test_net_registry.sh \
	|| failed=`expr $failed + $?`
}

net_misc
net_registry

testok $0 $failed