testsuite: make structuring output of net_s3 tests stand out more.
[Samba.git] / source / script / tests / test_net_s3.sh
blobf7dc2b7e10873524d08df7097ab910a5fe9d362f
1 #!/bin/sh
3 # tests for the "net" command
5 incdir=`dirname $0`
6 . $incdir/test_functions.sh
8 failed=0
10 net_misc() {
11 echo "RUNNING SUBTESTS net_misc"
12 $SCRIPTDIR/test_net_misc.sh \
13 || failed=`expr $failed + $?`
16 net_registry() {
17 echo "RUNNING SUBTESTS net_registry"
18 $SCRIPTDIR/test_net_registry.sh \
19 || failed=`expr $failed + $?`
22 net_rpc_registry() {
23 echo "RUNNING SUBTESTS net_rpc_registry"
24 $SCRIPTDIR/test_net_registry.sh rpc \
25 || failed=`expr $failed + $?`
28 net_misc
29 net_registry
30 net_rpc_registry
32 testok $0 $failed