1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

testsuite: make structuring output of net_s3 tests stand out more.

say "RUNNING SUBTESTS ..." instead of "Running ... tests"

Michael
This commit is contained in:
Michael Adam 2008-05-06 12:09:59 +02:00
parent b73821c392
commit 0b879817ba

View File

@ -8,19 +8,19 @@ incdir=`dirname $0`
failed=0 failed=0
net_misc() { net_misc() {
echo "Running misc tests" echo "RUNNING SUBTESTS net_misc"
$SCRIPTDIR/test_net_misc.sh \ $SCRIPTDIR/test_net_misc.sh \
|| failed=`expr $failed + $?` || failed=`expr $failed + $?`
} }
net_registry() { net_registry() {
echo "Running local registry tests" echo "RUNNING SUBTESTS net_registry"
$SCRIPTDIR/test_net_registry.sh \ $SCRIPTDIR/test_net_registry.sh \
|| failed=`expr $failed + $?` || failed=`expr $failed + $?`
} }
net_rpc_registry() { net_rpc_registry() {
echo "Running remote registry tests" echo "RUNNING SUBTESTS net_rpc_registry"
$SCRIPTDIR/test_net_registry.sh rpc \ $SCRIPTDIR/test_net_registry.sh rpc \
|| failed=`expr $failed + $?` || failed=`expr $failed + $?`
} }