1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s4-smbtorture: when testing RPC-SAMR-LARGE-DC its fine to just close the objects.

Guenther
This commit is contained in:
Günther Deschner 2009-06-08 22:41:23 +02:00
parent 7caf51c37a
commit bf7c814694

View File

@ -6347,7 +6347,7 @@ static bool test_ManyObjects(struct dcerpc_pipe *p,
return false;
}
/* delete */
/* close or delete */
for (i=0; i < num_total; i++) {
@ -6355,18 +6355,22 @@ static bool test_ManyObjects(struct dcerpc_pipe *p,
continue;
}
switch (which_ops) {
case TORTURE_SAMR_MANY_ACCOUNTS:
ret &= test_DeleteUser(p, tctx, &handles[i]);
break;
case TORTURE_SAMR_MANY_GROUPS:
ret &= test_DeleteDomainGroup(p, tctx, &handles[i]);
break;
case TORTURE_SAMR_MANY_ALIASES:
ret &= test_DeleteAlias(p, tctx, &handles[i]);
break;
default:
return false;
if (torture_setting_bool(tctx, "samba3", false)) {
ret &= test_samr_handle_Close(p, tctx, &handles[i]);
} else {
switch (which_ops) {
case TORTURE_SAMR_MANY_ACCOUNTS:
ret &= test_DeleteUser(p, tctx, &handles[i]);
break;
case TORTURE_SAMR_MANY_GROUPS:
ret &= test_DeleteDomainGroup(p, tctx, &handles[i]);
break;
case TORTURE_SAMR_MANY_ALIASES:
ret &= test_DeleteAlias(p, tctx, &handles[i]);
break;
default:
return false;
}
}
}