svn commit: samba r4462 - in branches/SAMBA_4_0/source: librpc/idl script/tests

tridge at samba.org tridge at samba.org
Sat Jan 1 01:40:45 GMT 2005


Author: tridge
Date: 2005-01-01 01:40:45 +0000 (Sat, 01 Jan 2005)
New Revision: 4462

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=4462

Log:
- enable DSSETUP on ncalrpc

- add DSSETUP to the list of tests run in test_rpc.sh

Modified:
   branches/SAMBA_4_0/source/librpc/idl/dssetup.idl
   branches/SAMBA_4_0/source/script/tests/test_rpc.sh


Changeset:
Modified: branches/SAMBA_4_0/source/librpc/idl/dssetup.idl
===================================================================
--- branches/SAMBA_4_0/source/librpc/idl/dssetup.idl	2005-01-01 01:32:01 UTC (rev 4461)
+++ branches/SAMBA_4_0/source/librpc/idl/dssetup.idl	2005-01-01 01:40:45 UTC (rev 4462)
@@ -7,7 +7,7 @@
 [
 	uuid("3919286a-b10c-11d0-9ba8-00c04fd92ef5"),
 	version(0.0),
-	endpoint("ncacn_np:[\\pipe\\lsarpc]","ncacn_np:[\\pipe\\lsass]"),
+	endpoint("ncacn_np:[\\pipe\\lsarpc]", "ncacn_np:[\\pipe\\lsass]", "ncalrpc:"),
 	pointer_default(unique),
 	helpstring("Active Directory Setup")
 ] interface dssetup

Modified: branches/SAMBA_4_0/source/script/tests/test_rpc.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/test_rpc.sh	2005-01-01 01:32:01 UTC (rev 4461)
+++ branches/SAMBA_4_0/source/script/tests/test_rpc.sh	2005-01-01 01:40:45 UTC (rev 4462)
@@ -2,7 +2,9 @@
 
 # add tests to this list as they start passing, so we test
 # that they stay passing
-tests="RPC-SCHANNEL RPC-ECHO"
+ncacn_np_tests="RPC-SCHANNEL RPC-ECHO RPC-DSSETUP"
+ncalrpc_tests="RPC-SCHANNEL RPC-ECHO RPC-DSSETUP"
+ncacn_ip_tcp_tests="RPC-SCHANNEL RPC-ECHO"
 
 if [ $# -lt 4 ]; then
 cat <<EOF
@@ -31,6 +33,11 @@
 
 for transport in ncalrpc ncacn_np ncacn_ip_tcp; do
  for bindoptions in connect sign seal sign,seal validate padcheck bigendian bigendian,seal; 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
     echo Testing $t on $transport with $bindoptions
     testit bin/smbtorture $transport:"$server[$bindoptions]" -U"$username"%"$password" -W $domain $t "$*"



More information about the samba-cvs mailing list