summaryrefslogtreecommitdiff
path: root/source4/torture/smb2/ioctl.c
diff options
context:
space:
mode:
authorDavid Disseldorp <ddiss@suse.de>2013-01-15 17:23:03 +0100
committerJeremy Allison <jra@samba.org>2013-01-16 23:15:07 +0100
commit3619b1a7b2b5a2bfe6fdb13ecb4650ae575ab3e8 (patch)
treedd417f939b41cd6793f4f64f1848cff983260c48 /source4/torture/smb2/ioctl.c
parentbc59ebf5231b44220598dfdf44c9a2cfcc538711 (diff)
downloadsamba-3619b1a7b2b5a2bfe6fdb13ecb4650ae575ab3e8.tar.gz
samba-3619b1a7b2b5a2bfe6fdb13ecb4650ae575ab3e8.tar.bz2
samba-3619b1a7b2b5a2bfe6fdb13ecb4650ae575ab3e8.zip
torture: skip FSCTL_SRV_ENUM_SNAPS test when not supported
If FSCTL_SRV_ENUM_SNAPS fails with NT_STATUS_NOT_SUPPORTED then skip the test, this means we can run the full ioctl test suite as part of autobuild. Reviewed by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source4/torture/smb2/ioctl.c')
-rw-r--r--source4/torture/smb2/ioctl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source4/torture/smb2/ioctl.c b/source4/torture/smb2/ioctl.c
index fdca601836..8c949ef300 100644
--- a/source4/torture/smb2/ioctl.c
+++ b/source4/torture/smb2/ioctl.c
@@ -59,6 +59,12 @@ static bool test_ioctl_get_shadow_copy(struct torture_context *torture,
ioctl.smb2.in.flags = SMB2_IOCTL_FLAG_IS_FSCTL;
status = smb2_ioctl(tree, tmp_ctx, &ioctl.smb2);
+ if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)
+ || NT_STATUS_EQUAL(status, NT_STATUS_INVALID_DEVICE_REQUEST)) {
+ torture_comment(torture,
+ "FSCTL_SRV_ENUM_SNAPS not supported, skipping\n");
+ return true;
+ }
torture_assert_ntstatus_ok(torture, status, "FSCTL_SRV_ENUM_SNAPS");
return true;