1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +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
net_misc() {
echo "Running misc tests"
echo "RUNNING SUBTESTS net_misc"
$SCRIPTDIR/test_net_misc.sh \
|| failed=`expr $failed + $?`
}
net_registry() {
echo "Running local registry tests"
echo "RUNNING SUBTESTS net_registry"
$SCRIPTDIR/test_net_registry.sh \
|| failed=`expr $failed + $?`
}
net_rpc_registry() {
echo "Running remote registry tests"
echo "RUNNING SUBTESTS net_rpc_registry"
$SCRIPTDIR/test_net_registry.sh rpc \
|| failed=`expr $failed + $?`
}