testsuite: make structuring output of net_s3 tests stand out more.
authorMichael Adam <obnox@samba.org>
Tue, 6 May 2008 10:09:59 +0000 (12:09 +0200)
committerMichael Adam <obnox@samba.org>
Tue, 6 May 2008 10:26:14 +0000 (12:26 +0200)
say "RUNNING SUBTESTS ..." instead of "Running ... tests"

Michael
(This used to be commit 0b879817ba20861c7d0b239d7f7199b0a5ed2ca1)

source3/script/tests/test_net_s3.sh

index 70be135c3f8aa203117e313f2319d1a796101092..f7dc2b7e10873524d08df7097ab910a5fe9d362f 100755 (executable)
@@ -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 + $?`
 }