summaryrefslogtreecommitdiff
path: root/source3/script
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-05-06 12:09:59 +0200
committerMichael Adam <obnox@samba.org>2008-05-06 12:26:14 +0200
commit1f582b73b3cc0880fe313fa9b02a3272c9e6442a (patch)
tree1481752a3aafe033219ba175911c726e6963c40b /source3/script
parentdadc6a4f3526d8d361069a5e4db65fa9aab73be4 (diff)
downloadsamba-1f582b73b3cc0880fe313fa9b02a3272c9e6442a.tar.gz
samba-1f582b73b3cc0880fe313fa9b02a3272c9e6442a.tar.bz2
samba-1f582b73b3cc0880fe313fa9b02a3272c9e6442a.zip
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)
Diffstat (limited to 'source3/script')
-rwxr-xr-xsource3/script/tests/test_net_s3.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/script/tests/test_net_s3.sh b/source3/script/tests/test_net_s3.sh
index 70be135c3f..f7dc2b7e10 100755
--- a/source3/script/tests/test_net_s3.sh
+++ b/source3/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 + $?`
}