1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-12 09:18:10 +03:00

r6598: Make it easy to point the test_echo.sh at remote servers, without

trying to find it on ncaclrpc at well.

Andrew Bartlett
(This used to be commit db0aa1c4b7)
This commit is contained in:
Andrew Bartlett 2005-05-03 12:34:59 +00:00 committed by Gerald (Jerry) Carter
parent 1199f5f561
commit f37f8a49a7

View File

@ -25,7 +25,12 @@ testit() {
rm -f test.$$;
}
for transport in ncalrpc ncacn_np ncacn_ip_tcp; do
transports="ncacn_np ncacn_ip_tcp"
if [ $server = "localhost" ]; then
transports="ncalrpc $transports"
fi
for transport in $transports; do
for bindoptions in connect sign seal sign,seal validate padcheck bigendian bigendian,seal; do
for ntlmoptions in \
"--option=socket:testnonblock=True" \