summaryrefslogtreecommitdiff
path: root/source4/torture
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-04-11 20:56:48 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-04-11 20:57:33 +0200
commitb65c8d05059466f8e8b2196c99469105afd128e8 (patch)
tree5d43e5f9b7f9c34b34dd78978bc66d88e2965bb7 /source4/torture
parent5d0694f9941e22f92c9c641b8fb3a7ce376ee5cd (diff)
downloadsamba-b65c8d05059466f8e8b2196c99469105afd128e8.tar.gz
samba-b65c8d05059466f8e8b2196c99469105afd128e8.tar.bz2
samba-b65c8d05059466f8e8b2196c99469105afd128e8.zip
s4: Fix more test results to not conflict with subunit commands.
Diffstat (limited to 'source4/torture')
-rw-r--r--source4/torture/smb2/setinfo.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/torture/smb2/setinfo.c b/source4/torture/smb2/setinfo.c
index 04b64fd632..734cf1fa77 100644
--- a/source4/torture/smb2/setinfo.c
+++ b/source4/torture/smb2/setinfo.c
@@ -147,7 +147,7 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
torture_smb2_all_info(tree, handle);
- torture_comment(tctx, "test basic_information level\n");
+ torture_comment(tctx, "Test basic_information level\n");
basetime += 86400;
unix_to_nt_time(&sfinfo.basic_info.in.create_time, basetime + 100);
unix_to_nt_time(&sfinfo.basic_info.in.access_time, basetime + 200);
@@ -193,7 +193,7 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
CHECK_CALL(BASIC_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, attrib, FILE_ATTRIBUTE_NORMAL);
- torture_comment(tctx, "test disposition_information level\n");
+ torture_comment(tctx, "Test disposition_information level\n");
sfinfo.disposition_info.in.delete_on_close = 1;
CHECK_CALL(DISPOSITION_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, delete_pending, 1);
@@ -204,7 +204,7 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, delete_pending, 0);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, nlink, 1);
- torture_comment(tctx, "test allocation_information level\n");
+ torture_comment(tctx, "Test allocation_information level\n");
sfinfo.allocation_info.in.alloc_size = 0;
CHECK_CALL(ALLOCATION_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, size, 0);
@@ -215,7 +215,7 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, alloc_size, 4096);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, size, 0);
- torture_comment(tctx, "test end_of_file_info level\n");
+ torture_comment(tctx, "Test end_of_file_info level\n");
sfinfo.end_of_file_info.in.size = 37;
CHECK_CALL(END_OF_FILE_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, size, 37);
@@ -224,13 +224,13 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
CHECK_CALL(END_OF_FILE_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, size, 7);
- torture_comment(tctx, "test position_information level\n");
+ torture_comment(tctx, "Test position_information level\n");
sfinfo.position_information.in.position = 123456;
CHECK_CALL(POSITION_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(POSITION_INFORMATION, position_information, position, 123456);
CHECK_VALUE(SMB2_ALL_INFORMATION, all_info2, position, 123456);
- torture_comment(tctx, "test mode_information level\n");
+ torture_comment(tctx, "Test mode_information level\n");
sfinfo.mode_information.in.mode = 2;
CHECK_CALL(MODE_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(MODE_INFORMATION, mode_information, mode, 2);
@@ -243,7 +243,7 @@ bool torture_smb2_setinfo(struct torture_context *tctx)
CHECK_CALL(MODE_INFORMATION, NT_STATUS_OK);
CHECK_VALUE(MODE_INFORMATION, mode_information, mode, 0);
- torture_comment(tctx, "test sec_desc level\n");
+ torture_comment(tctx, "Test sec_desc level\n");
ZERO_STRUCT(finfo2);
finfo2.query_secdesc.in.secinfo_flags =
SECINFO_OWNER |