diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-09-01 02:33:00 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:03:21 -0500 |
commit | 477ecbd4987663b0c121d77fb72bce4f318ee7bb (patch) | |
tree | 37f627ae7a2174782b28d0f7daf43dc360d21448 /source4/selftest/test_rpc_quick.sh | |
parent | c3077a9e4bd3fd61055a1824946f6f2fb4aec583 (diff) | |
download | samba-477ecbd4987663b0c121d77fb72bce4f318ee7bb.tar.gz samba-477ecbd4987663b0c121d77fb72bce4f318ee7bb.tar.bz2 samba-477ecbd4987663b0c121d77fb72bce4f318ee7bb.zip |
r24861: Use absolute paths to make it easier to run the testsuite from the Samba3 source.
(This used to be commit 022d5a43cedeb5cca7e4cf3424963e2180ec1f2f)
Diffstat (limited to 'source4/selftest/test_rpc_quick.sh')
-rwxr-xr-x | source4/selftest/test_rpc_quick.sh | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/source4/selftest/test_rpc_quick.sh b/source4/selftest/test_rpc_quick.sh deleted file mode 100755 index 8793e0b6e6..0000000000 --- a/source4/selftest/test_rpc_quick.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -# add tests to this list as they start passing, so we test -# that they stay passing -ncacn_np_tests="RPC-ALTERCONTEXT RPC-JOIN RPC-ECHO RPC-SCHANNEL RPC-NETLOGON RPC-UNIXINFO RPC-HANDLES" -ncacn_ip_tcp_tests="RPC-ALTERCONTEXT RPC-JOIN RPC-ECHO RPC-HANDLES" -ncalrpc_tests="RPC-ECHO" - -incdir=`dirname $0` -. $incdir/test_functions.sh - -for bindoptions in seal,padcheck $VALIDATE bigendian; do - for transport in ncalrpc ncacn_np ncacn_ip_tcp; do - case $transport in - ncalrpc) tests=$ncalrpc_tests ;; - ncacn_np) tests=$ncacn_np_tests ;; - ncacn_ip_tcp) tests=$ncacn_ip_tcp_tests ;; - esac - for t in $tests; do - name="$t on $transport with $bindoptions" - plantest "$name" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $transport:"\$SERVER[$bindoptions]" -U"\$USERNAME"%"\$PASSWORD" -W \$DOMAIN $t "$*" - done - done -done |