From 232db0b46dcc78b977f0495645fd48487a0b090b Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Mon, 5 Jun 2006 10:00:41 +0000 Subject: r16044: Create a samba3 specific file in torture/rpc. The tests in there survive against W2k3, but they are designed to walk existing Samba3 code paths. It might be possible that I add something like that to other subdirs like raw/. RPC-BINDSAMBA3 excercises the bind variants that samba3 supports right now. RPC-NETLOGSAMBA3 does a samba3 style join, does some schannel-protected netlogon operations and leaves again. Samba3 right now does not survive this, I'm about to fix it soon. I'll also post a *VERY* dirty hack (fake users in sys_getpwnam()) to be able to run this in the build farm. Volker (This used to be commit 60b45bf8b6d0d2bb216e319891d50d0e07ab3010) --- source4/torture/rpc/rpc.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/torture/rpc/rpc.c') diff --git a/source4/torture/rpc/rpc.c b/source4/torture/rpc/rpc.c index 75634f90ff..c9f2e7e75f 100644 --- a/source4/torture/rpc/rpc.c +++ b/source4/torture/rpc/rpc.c @@ -123,6 +123,8 @@ NTSTATUS torture_rpc_init(void) register_torture_op("RPC-COUNTCALLS", torture_rpc_countcalls, 0); register_torture_op("RPC-MULTIBIND", torture_multi_bind, 0); register_torture_op("RPC-AUTHCONTEXT", torture_bind_authcontext, 0); + register_torture_op("RPC-BINDSAMBA3", torture_bind_samba3, 0); + register_torture_op("RPC-NETLOGSAMBA3", torture_netlogon_samba3, 0); register_torture_op("RPC-DRSUAPI", torture_rpc_drsuapi, 0); register_torture_op("RPC-CRACKNAMES", torture_rpc_drsuapi_cracknames, 0); register_torture_op("RPC-ROT", torture_rpc_rot, 0); -- cgit