From: Sachin Prabhu Date: Mon, 28 May 2018 11:54:54 +0000 (+0530) Subject: s4-torture: Increase timeout for lease/oplock break handlers X-Git-Tag: tdb-1.4.1~349 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f115b53c7266a780ab492df483ebfa4704e3e003;p=thirdparty%2Fsamba.git s4-torture: Increase timeout for lease/oplock break handlers 0.1 seconds is not enough when running tests against a server over the network and are causing timing related bugs. We increase this to 1 second. Signed-off-by: Sachin Prabhu Reviewed-by: Guenther Deschner Reviewed-by: Jeremy Allison --- diff --git a/source4/torture/smb2/lease_break_handler.c b/source4/torture/smb2/lease_break_handler.c index 8e576391eb1..d741127f3d5 100644 --- a/source4/torture/smb2/lease_break_handler.c +++ b/source4/torture/smb2/lease_break_handler.c @@ -108,8 +108,8 @@ void torture_wait_for_lease_break(struct torture_context *tctx) bool timesup = false; int old_count = lease_break_info.count; - /* Wait .1 seconds for an lease break */ - ne = tevent_timeval_current_ofs(0, 100000); + /* Wait 1 second for an lease break */ + ne = tevent_timeval_current_ofs(0, 1000000); te = tevent_add_timer(tctx->ev, tmp_ctx, ne, timeout_cb, ×up); if (te == NULL) { diff --git a/source4/torture/smb2/oplock_break_handler.c b/source4/torture/smb2/oplock_break_handler.c index de46eb32f2a..d64b0bed6db 100644 --- a/source4/torture/smb2/oplock_break_handler.c +++ b/source4/torture/smb2/oplock_break_handler.c @@ -125,8 +125,8 @@ void torture_wait_for_oplock_break(struct torture_context *tctx) bool timesup = false; int old_count = break_info.count; - /* Wait .1 seconds for an oplock break */ - ne = tevent_timeval_current_ofs(0, 100000); + /* Wait 1 second for an oplock break */ + ne = tevent_timeval_current_ofs(0, 1000000); te = tevent_add_timer(tctx->ev, tmp_ctx, ne, timeout_cb, ×up); if (te == NULL) {