summaryrefslogtreecommitdiff
path: root/source/script/tests/test_net_s3.sh
blob: 70be135c3f8aa203117e313f2319d1a796101092 (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
27
28
29
30
31
32
33
#!/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_rpc_registry() {
	echo "Running remote registry tests"
	$SCRIPTDIR/test_net_registry.sh rpc \
	|| failed=`expr $failed + $?`
}

net_misc
net_registry
net_rpc_registry

testok $0 $failed