1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-08 05:57:51 +03:00
samba-mirror/source4/selftest/test_binding_string.sh
Stefan Metzmacher 1e84e4026e r22575: move script/tests/ -> selftest/
as discussed with jelmer and abartlet

metze
(This used to be commit e9fe3c40e10accb63d7a2124d3a7e77e499c4209)
2007-10-10 14:51:46 -05:00

19 lines
602 B
Bash
Executable File

#!/bin/sh
incdir=`dirname $0`
. $incdir/test_functions.sh
for I in "ncacn_np:\$SERVER" \
"ncacn_ip_tcp:\$SERVER" \
"ncacn_np:\$SERVER[rpcecho]" \
"ncacn_np:\$SERVER[/pipe/rpcecho]" \
"ncacn_np:\$SERVER[/pipe/rpcecho,sign,seal]" \
"ncacn_np:\$SERVER[,sign]" \
"ncacn_ip_tcp:\$SERVER[,sign]" \
"ncalrpc:" \
"308FB580-1EB2-11CA-923B-08002B1075A7@ncacn_np:\$SERVER" \
"308FB580-1EB2-11CA-923B-08002B1075A7@ncacn_ip_tcp:\$SERVER"
do
plantest "$I" dc bin/smbtorture $TORTURE_OPTIONS "$I" -U"\$USERNAME"%"\$PASSWORD" -W "\$DOMAIN" --option=torture:quick=yes RPC-ECHO "$*"
done