s4-torture: mark s4 as doing valid lock range tests on SMB
authorAndrew Tridgell <tridge@samba.org>
Fri, 27 Nov 2009 07:09:50 +0000 (18:09 +1100)
committerAndrew Tridgell <tridge@samba.org>
Fri, 27 Nov 2009 08:42:10 +0000 (19:42 +1100)
source4/torture/raw/lock.c

index 0228837addccf5eeecebb48ef1fe8deeace8310c..8b49df5de5c70a4642d21bbe8bf78bf769106770 100644 (file)
@@ -72,6 +72,7 @@
 #define TARGET_IS_W2K8(_tctx) (torture_setting_bool(_tctx, "w2k8", false))
 #define TARGET_IS_WIN7(_tctx) (torture_setting_bool(_tctx, "win7", false))
 #define TARGET_IS_SAMBA3(_tctx) (torture_setting_bool(_tctx, "samba3", false))
+#define TARGET_IS_SAMBA4(_tctx) (torture_setting_bool(_tctx, "samba4", false))
 
 /*
   test SMBlock and SMBunlock ops
@@ -365,7 +366,7 @@ static bool test_lockx(struct torture_context *tctx, struct smbcli_state *cli)
        lock[0].pid++;
        lock[0].count = 2;
        status = smb_raw_lock(cli->tree, &io);
-       if (TARGET_IS_WIN7(tctx))
+       if (TARGET_IS_WIN7(tctx) || TARGET_IS_SAMBA4(tctx))
                CHECK_STATUS(status, NT_STATUS_INVALID_LOCK_RANGE);
        else
                CHECK_STATUS(status, NT_STATUS_OK);