From: Andrew Tridgell Date: Wed, 28 May 2008 02:05:23 +0000 (+1000) Subject: add exceptions for some of the strange windows SMB2 locking behaviour X-Git-Tag: samba-4.0.0alpha4~24^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=429bbecebe50ce3d8d494eece35b2387556d5893;p=thirdparty%2Fsamba.git add exceptions for some of the strange windows SMB2 locking behaviour --- diff --git a/source/torture/smb2/lock.c b/source/torture/smb2/lock.c index 4e21045a330..5a36ac3eaef 100644 --- a/source/torture/smb2/lock.c +++ b/source/torture/smb2/lock.c @@ -252,12 +252,20 @@ static bool test_valid_request(struct torture_context *torture, struct smb2_tree lck.in.lock_count = 1; el[0].flags = SMB2_LOCK_FLAG_UNLOCK; status = smb2_lock(tree, &lck); - CHECK_STATUS(status, NT_STATUS_OK); + if (torture_setting_bool(torture, "windows", false)) { + CHECK_STATUS(status, NT_STATUS_RANGE_NOT_LOCKED); + } else { + CHECK_STATUS(status, NT_STATUS_OK); + } lck.in.lock_count = 1; el[0].flags = SMB2_LOCK_FLAG_UNLOCK; status = smb2_lock(tree, &lck); - CHECK_STATUS(status, NT_STATUS_OK); + if (torture_setting_bool(torture, "windows", false)) { + CHECK_STATUS(status, NT_STATUS_RANGE_NOT_LOCKED); + } else { + CHECK_STATUS(status, NT_STATUS_OK); + } lck.in.lock_count = 1; el[0].flags = SMB2_LOCK_FLAG_UNLOCK;