summaryrefslogtreecommitdiff
path: root/source/script/tests/test_net_s3.sh
blob: 24732580fae9cbe05681eb9340c518b3e22103d9 (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 registry tests"
	$SCRIPTDIR/test_net_registry.sh \
	|| failed=`expr $failed + $?`
}

net_misc
net_registry

testok $0 $failed