summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-05-06 12:09:59 +0200
committerKarolin Seeger <kseeger@samba.org>2008-06-23 14:18:48 +0200
commitb993a35f1bdd3ac79a08c197276474d7bd885cf5 (patch)
treef9d373a88fb6966bd92545153842142cc6b12f2e
parentf4efe290b509222c3607745edc62fe8627ffad09 (diff)
downloadsamba-b993a35f1bdd3ac79a08c197276474d7bd885cf5.tar.gz
testsuite: make structuring output of net_s3 tests stand out more.
say "RUNNING SUBTESTS ..." instead of "Running ... tests" Michael (cherry picked from commit 0b879817ba20861c7d0b239d7f7199b0a5ed2ca1) (cherry picked from commit 370295aef1f8ee7cf8b5126de4629b69d1559578)
-rwxr-xr-xsource/script/tests/test_net_s3.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/script/tests/test_net_s3.sh b/source/script/tests/test_net_s3.sh
index 70be135c3f8..f7dc2b7e108 100755
--- a/source/script/tests/test_net_s3.sh
+++ b/source/script/tests/test_net_s3.sh
@@ -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 + $?`
}