summaryrefslogtreecommitdiff
path: root/source4/script/tests/tests_quick.sh
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-01-14 03:18:04 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:40:44 -0500
commit5ae1175460b6ac419fc30f0858e115321e689b33 (patch)
tree11b35ee5882bb8c597ad93422613e4c3eb8e244c /source4/script/tests/tests_quick.sh
parentd657ae5b199180ba75f1226d49f2f9e3362dec4e (diff)
downloadsamba-5ae1175460b6ac419fc30f0858e115321e689b33.tar.gz
samba-5ae1175460b6ac419fc30f0858e115321e689b33.tar.bz2
samba-5ae1175460b6ac419fc30f0858e115321e689b33.zip
r20754: Simplify code for calculating total number of failed tests.
(This used to be commit f288ca5f6805d04a2da60a26006ca293d9fa7cc0)
Diffstat (limited to 'source4/script/tests/tests_quick.sh')
-rwxr-xr-xsource4/script/tests/tests_quick.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/script/tests/tests_quick.sh b/source4/script/tests/tests_quick.sh
index 10fc489280..03f62522cf 100755
--- a/source4/script/tests/tests_quick.sh
+++ b/source4/script/tests/tests_quick.sh
@@ -4,9 +4,9 @@ export TORTURE_OPTIONS
TORTURE_QUICK="yes"
export TORTURE_QUICK
-$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_ejs.sh $DOMAIN $USERNAME $PASSWORD
+$SRCDIR/script/tests/test_ldap.sh $SERVER $USERNAME $PASSWORD
+$SRCDIR/script/tests/test_nbt.sh $SERVER
+$SRCDIR/script/tests/test_quick.sh //$SERVER/cifs $USERNAME $PASSWORD ""
+$SRCDIR/script/tests/test_rpc_quick.sh $SERVER $USERNAME $PASSWORD $DOMAIN
#$SRCDIR/script/tests/test_cifsposix.sh //$SERVER/cifsposixtestshare $USERNAME $PASSWORD "" || totalfailed=`expr $totalfailed + $?`