24732580fae9cbe05681eb9340c518b3e22103d9
[kai/samba.git] / source3 / script / tests / test_net_s3.sh
1 #!/bin/sh
2
3 # tests for the "net" command
4
5 incdir=`dirname $0`
6 . $incdir/test_functions.sh
7
8 failed=0
9
10 net_misc() {
11         echo "Running misc tests"
12         $SCRIPTDIR/test_net_misc.sh \
13         || failed=`expr $failed + $?`
14 }
15
16 net_registry() {
17         echo "Running registry tests"
18         $SCRIPTDIR/test_net_registry.sh \
19         || failed=`expr $failed + $?`
20 }
21
22 net_misc
23 net_registry
24
25 testok $0 $failed
26