1
0
mirror of https://github.com/samba-team/samba.git synced 2025-06-25 19:17:10 +03:00
samba-mirror/source3/script/tests/test_net_s3.sh
Michael Adam 1f582b73b3 testsuite: make structuring output of net_s3 tests stand out more.
say "RUNNING SUBTESTS ..." instead of "Running ... tests"

Michael
(This used to be commit 0b879817ba20861c7d0b239d7f7199b0a5ed2ca1)
2008-05-06 12:26:14 +02:00

34 lines
532 B
Bash
Executable File

#!/bin/sh
# tests for the "net" command
incdir=`dirname $0`
. $incdir/test_functions.sh
failed=0
net_misc() {
echo "RUNNING SUBTESTS net_misc"
$SCRIPTDIR/test_net_misc.sh \
|| failed=`expr $failed + $?`
}
net_registry() {
echo "RUNNING SUBTESTS net_registry"
$SCRIPTDIR/test_net_registry.sh \
|| failed=`expr $failed + $?`
}
net_rpc_registry() {
echo "RUNNING SUBTESTS net_rpc_registry"
$SCRIPTDIR/test_net_registry.sh rpc \
|| failed=`expr $failed + $?`
}
net_misc
net_registry
net_rpc_registry
testok $0 $failed