torture-samr: Set lockout_seconds to 60 for samba3
authorAndrew Bartlett <abartlet@samba.org>
Sun, 3 Nov 2013 23:26:18 +0000 (12:26 +1300)
committerStefan Metzmacher <metze@samba.org>
Wed, 2 Apr 2014 15:12:45 +0000 (17:12 +0200)
The source3 account policy code deals with lockouts in terms of
minutes, not nanoseconds, so we have to lock out for at least 60
seconds otherwise we do not wait long enough.

Andrew Bartlett.

Change-Id: I2b30d1c0d9b020b3aba6ed3343361e9a576b7d9a
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
source4/torture/rpc/samr.c

index c0d8039331dda5ed3a85ed14fc09f2c16a1ff027..660439e382d262e30b8162d3035fab388c8e84af 100644 (file)
@@ -4103,6 +4103,10 @@ static bool test_Password_lockout(struct dcerpc_pipe *p,
        uint64_t delta_time_factor = 10 * 1000 * 1000;
        struct dcerpc_binding_handle *b = p->binding_handle;
 
+       if (torture_setting_bool(tctx, "samba3", false)) {
+               lockout_seconds = 60;
+       }
+
        torture_comment(tctx, "\nTesting account lockout: %s\n", comment);
 
        /* set policies */