diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-02-18 14:55:30 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-02-18 14:55:30 +1100 |
commit | 0e03c3aa892439bb5567b0129a40b267ecb6cee5 (patch) | |
tree | e688646f0f1f7523ada879d8a44329b8bbbfd593 | |
parent | 10a374421bac7df15ab398bc46580be0d06d9d7d (diff) | |
download | samba-0e03c3aa892439bb5567b0129a40b267ecb6cee5.tar.gz samba-0e03c3aa892439bb5567b0129a40b267ecb6cee5.tar.bz2 samba-0e03c3aa892439bb5567b0129a40b267ecb6cee5.zip |
disable the EAS level in SMB2-GETINFO test until we get some feedback
on how the alignment requirements have changed
(This used to be commit 2a474568c2f85603657a97ad658089122a1f4f19)
-rw-r--r-- | source4/torture/smb2/getinfo.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/source4/torture/smb2/getinfo.c b/source4/torture/smb2/getinfo.c index f561b62d47..c47a26277c 100644 --- a/source4/torture/smb2/getinfo.c +++ b/source4/torture/smb2/getinfo.c @@ -51,7 +51,9 @@ static struct { { LEVEL(RAW_FILEINFO_COMPRESSION_INFORMATION) }, { LEVEL(RAW_FILEINFO_NETWORK_OPEN_INFORMATION) }, { LEVEL(RAW_FILEINFO_ATTRIBUTE_TAG_INFORMATION) }, - { LEVEL(RAW_FILEINFO_SMB2_ALL_EAS) }, +/* +disabled until we know how the alignment now works +{ LEVEL(RAW_FILEINFO_SMB2_ALL_EAS) }, */ { LEVEL(RAW_FILEINFO_SMB2_ALL_INFORMATION) }, { LEVEL(RAW_FILEINFO_SEC_DESC) } }; @@ -85,13 +87,13 @@ static bool torture_smb2_fileinfo(struct torture_context *tctx, struct smb2_tree status = torture_smb2_testfile(tree, FNAME, &hfile); if (!NT_STATUS_IS_OK(status)) { - printf("Unable to create test file '%s' - %s\n", FNAME, nt_errstr(status)); + printf(__location__ " Unable to create test file '%s' - %s\n", FNAME, nt_errstr(status)); goto failed; } status = torture_smb2_testdir(tree, DNAME, &hdir); if (!NT_STATUS_IS_OK(status)) { - printf("Unable to create test directory '%s' - %s\n", DNAME, nt_errstr(status)); + printf(__location__ " Unable to create test directory '%s' - %s\n", DNAME, nt_errstr(status)); goto failed; } @@ -150,7 +152,7 @@ static bool torture_smb2_fsinfo(struct smb2_tree *tree) printf("Testing fsinfo levels\n"); status = smb2_util_roothandle(tree, &handle); if (!NT_STATUS_IS_OK(status)) { - printf("Unable to create test directory '%s' - %s\n", DNAME, nt_errstr(status)); + printf(__location__ " Unable to create root handle - %s\n", nt_errstr(status)); return false; } |