diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-03-21 16:26:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:49:38 -0500 |
commit | 86d77746dbaa3570fb6e23538b52ba3bb19f0b07 (patch) | |
tree | 1cacce91b0b559195ab53e61d578e31ccc522267 /source4/script/tests/test_net.sh | |
parent | 2fca3f9082a70e1f153f6c9f195d95b0d48e363d (diff) | |
download | samba-86d77746dbaa3570fb6e23538b52ba3bb19f0b07.tar.gz samba-86d77746dbaa3570fb6e23538b52ba3bb19f0b07.tar.bz2 samba-86d77746dbaa3570fb6e23538b52ba3bb19f0b07.zip |
r21910: Clean up some unused functions.
(This used to be commit 36cd3406db06e3101cfede2f3935879cb11eeb93)
Diffstat (limited to 'source4/script/tests/test_net.sh')
-rwxr-xr-x | source4/script/tests/test_net.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source4/script/tests/test_net.sh b/source4/script/tests/test_net.sh index 05b42130ab..b7b12c8b7a 100755 --- a/source4/script/tests/test_net.sh +++ b/source4/script/tests/test_net.sh @@ -22,7 +22,6 @@ shift 4 incdir=`dirname $0` . $incdir/test_functions.sh -failed=0 for bindoptions in seal,padcheck $VALIDATE bigendian; do for transport in ncalrpc ncacn_np ncacn_ip_tcp; do case $transport in @@ -32,9 +31,7 @@ for bindoptions in seal,padcheck $VALIDATE bigendian; do esac for t in $tests; do name="$t on $transport with $bindoptions" - testit "$name" rpc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $transport:"$server[$bindoptions]" -U"$username"%"$password" -W $domain $t "$*" + plantest "$name" rpc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $transport:"$server[$bindoptions]" -U"$username"%"$password" -W $domain $t "$*" done done done - -testok $0 $failed |