summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-08-04 06:01:10 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:57:46 -0500
commit07aa4d8fe24cb56ea030cff6502fe029106bc0d2 (patch)
tree2f13b44b7725b3d3506d927df85a88ebae98508b
parent79a228a35bc28d65f4ff7fcf594fc3f5a16497c9 (diff)
downloadsamba-07aa4d8fe24cb56ea030cff6502fe029106bc0d2.tar.gz
samba-07aa4d8fe24cb56ea030cff6502fe029106bc0d2.tar.bz2
samba-07aa4d8fe24cb56ea030cff6502fe029106bc0d2.zip
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)
-rw-r--r--source4/torture/rpc/samr.c6
1 files changed, 6 insertions, 0 deletions
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");