From 07aa4d8fe24cb56ea030cff6502fe029106bc0d2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 4 Aug 2004 06:01:10 +0000 Subject: r1646: disable testing of group rename in the RPC-SAMR test, as it leaves the group in a state where it can't be deleted via samr, which breaks repeated runs of the test. (This used to be commit bcad9efd728983c2d8932ef93eebd3d0c6d4d085) --- source4/torture/rpc/samr.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source4') diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index 9bc35fbbd2..c73672689e 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -1708,9 +1708,15 @@ static BOOL test_SetGroupInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, s.in.level = levels[i]; s.in.info = r.out.info; +#if 0 + /* disabled this, as it changes the name only from the point of view of samr, + but leaves the name from the point of view of w2k3 internals (and ldap). This means + the name is still reserved, so creating the old name fails, but deleting by the old name + also fails */ if (s.in.level == 2) { init_samr_Name(&s.in.info->name, "NewName"); } +#endif if (s.in.level == 4) { init_samr_Name(&s.in.info->description, "test description"); -- cgit