diff options
author | Andrew Tridgell <tridge@samba.org> | 2006-09-15 22:39:30 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:18:48 -0500 |
commit | d6c128fb4c0d0f5368aa9729d1e4bb8005b909c6 (patch) | |
tree | 6f10dccd5e0ab5930cb7fb91dda39aed4727d113 /source4/script/tests/tests_quick.sh | |
parent | 1ce5df6c724f8d943b9c32c23f9e8e551630ac4a (diff) | |
download | samba-d6c128fb4c0d0f5368aa9729d1e4bb8005b909c6.tar.gz samba-d6c128fb4c0d0f5368aa9729d1e4bb8005b909c6.tar.bz2 samba-d6c128fb4c0d0f5368aa9729d1e4bb8005b909c6.zip |
r18571: try to make it a lot more obvious when 'make test' or 'make quicktest'
has failed. The output was too subtle for people who aren't used to
it.
(This used to be commit a57decb96aee05d3238b64d50a136c8b8001f811)
Diffstat (limited to 'source4/script/tests/tests_quick.sh')
-rwxr-xr-x | source4/script/tests/tests_quick.sh | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/source4/script/tests/tests_quick.sh b/source4/script/tests/tests_quick.sh index 614b98008c..3c80910901 100755 --- a/source4/script/tests/tests_quick.sh +++ b/source4/script/tests/tests_quick.sh @@ -4,10 +4,9 @@ export TORTURE_OPTIONS TORTURE_QUICK="yes" export TORTURE_QUICK -$SRCDIR/script/tests/test_ejs.sh $DOMAIN $USERNAME $PASSWORD || failed=`expr $failed + $?` -$SRCDIR/script/tests/test_ldap.sh $SERVER $USERNAME $PASSWORD || failed=`expr $failed + $?` -$SRCDIR/script/tests/test_nbt.sh $SERVER || failed=`expr $failed + $?` -$SRCDIR/script/tests/test_quick.sh //$SERVER/cifs $USERNAME $PASSWORD "" || failed=`expr $failed + $?` -$SRCDIR/script/tests/test_rpc_quick.sh $SERVER $USERNAME $PASSWORD $DOMAIN || failed=`expr $failed + $?` -$SRCDIR/script/tests/test_cifsposix.sh //$SERVER/cifsposixtestshare $USERNAME $PASSWORD "" || failed=`expr $failed + $?` - +$SRCDIR/script/tests/test_ejs.sh $DOMAIN $USERNAME $PASSWORD || totalfailed=`expr $totalfailed + $?` +$SRCDIR/script/tests/test_ldap.sh $SERVER $USERNAME $PASSWORD || totalfailed=`expr $totalfailed + $?` +$SRCDIR/script/tests/test_nbt.sh $SERVER || totalfailed=`expr $totalfailed + $?` +$SRCDIR/script/tests/test_quick.sh //$SERVER/cifs $USERNAME $PASSWORD "" || totalfailed=`expr $totalfailed + $?` +$SRCDIR/script/tests/test_rpc_quick.sh $SERVER $USERNAME $PASSWORD $DOMAIN || totalfailed=`expr $totalfailed + $?` +$SRCDIR/script/tests/test_cifsposix.sh //$SERVER/cifsposixtestshare $USERNAME $PASSWORD "" || totalfailed=`expr $totalfailed + $?` |