diff options
author | Günther Deschner <gd@samba.org> | 2009-04-17 11:04:44 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-04-17 11:15:58 +0200 |
commit | 32add69632ed4a2b877043c8df1185008516c299 (patch) | |
tree | 7cef61469167c5c704e556df193d8afd10255eb2 /source4 | |
parent | 1214bf606d1cdf3f33b91ffe7cb4c349ce737d68 (diff) | |
download | samba-32add69632ed4a2b877043c8df1185008516c299.tar.gz samba-32add69632ed4a2b877043c8df1185008516c299.tar.bz2 samba-32add69632ed4a2b877043c8df1185008516c299.zip |
s4-smbtorture: disable CreateUser2 tests when running RPC-SAMR-PASSWORDS-PWDLAST
against Samba3.
Samba 3 does not (yet) get all the ACB_flag settings right upon creation.
Guenther
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/rpc/samr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index 8af9867528..9c867fd5e4 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -5664,7 +5664,9 @@ static bool test_OpenDomain(struct dcerpc_pipe *p, struct torture_context *tctx, } break; case TORTURE_SAMR_PASSWORDS_PWDLASTSET: - ret &= test_CreateUser2(p, tctx, &domain_handle, sid, which_ops, machine_credentials); + if (!torture_setting_bool(tctx, "samba3", false)) { + ret &= test_CreateUser2(p, tctx, &domain_handle, sid, which_ops, machine_credentials); + } ret &= test_CreateUser(p, tctx, &domain_handle, &user_handle, sid, which_ops, machine_credentials); if (!ret) { printf("Testing PASSWORDS PWDLASTSET on domain %s failed!\n", dom_sid_string(tctx, sid)); |