diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-04-11 01:39:06 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-04-11 20:57:33 +0200 |
commit | 7da94cc4a664521be279b019e9f32121cd410193 (patch) | |
tree | 3aa0c65387e4415effb4de9d0d3d5873605c016f /source4/torture/basic | |
parent | d0ab7440acf57f698290c2ba64650c6144bc8545 (diff) | |
download | samba-7da94cc4a664521be279b019e9f32121cd410193.tar.gz samba-7da94cc4a664521be279b019e9f32121cd410193.tar.bz2 samba-7da94cc4a664521be279b019e9f32121cd410193.zip |
subunit: Support formatting compatible with upstream subunit, for consistency.
Upstream subunit makes a ":" after commands optional, so I've fixed any
places where we might trigger commands accidently. I've filed a bug
about this in subunit.
Diffstat (limited to 'source4/torture/basic')
-rw-r--r-- | source4/torture/basic/base.c | 2 | ||||
-rw-r--r-- | source4/torture/basic/denytest.c | 4 | ||||
-rw-r--r-- | source4/torture/basic/misc.c | 2 | ||||
-rw-r--r-- | source4/torture/basic/unlink.c | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/source4/torture/basic/base.c b/source4/torture/basic/base.c index e4b4c62f61..d883a79498 100644 --- a/source4/torture/basic/base.c +++ b/source4/torture/basic/base.c @@ -930,7 +930,7 @@ error_test3: smbcli_unlink(cli1->tree, fname); - torture_comment(tctx, "testing ctemp\n"); + torture_comment(tctx, "Testing ctemp\n"); fnum1 = smbcli_ctemp(cli1->tree, "\\", &tmp_path); if (fnum1 == -1) { torture_comment(tctx, "ctemp failed (%s)\n", smbcli_errstr(cli1->tree)); diff --git a/source4/torture/basic/denytest.c b/source4/torture/basic/denytest.c index 8a5c24ca79..174a1b2d6c 100644 --- a/source4/torture/basic/denytest.c +++ b/source4/torture/basic/denytest.c @@ -1429,7 +1429,7 @@ bool torture_denytest1(struct torture_context *tctx, smbcli_close(cli1->tree, fnum1); } - torture_comment(tctx, "testing %d entries\n", (int)ARRAY_SIZE(denytable1)); + torture_comment(tctx, "Testing %d entries\n", (int)ARRAY_SIZE(denytable1)); GetTimeOfDay(&tv_start); @@ -1797,7 +1797,7 @@ static bool torture_ntdenytest(struct torture_context *tctx, io1.ntcreatex.in.fname = fname; io2 = io1; - torture_comment(tctx, "testing %d entries on %s\n", torture_numops, fname); + torture_comment(tctx, "Testing %d entries on %s\n", torture_numops, fname); for (i=0;i<torture_numops;i++) { NTSTATUS status1, status2, status2_p; diff --git a/source4/torture/basic/misc.c b/source4/torture/basic/misc.c index 2b08ad2d8a..40a61400f7 100644 --- a/source4/torture/basic/misc.c +++ b/source4/torture/basic/misc.c @@ -429,7 +429,7 @@ bool torture_ioctl_test(struct torture_context *tctx, torture_comment(tctx, "ioctl job info: %s\n", smbcli_errstr(cli->tree)); for (device=0;device<0x100;device++) { - torture_comment(tctx, "testing device=0x%x\n", device); + torture_comment(tctx, "Testing device=0x%x\n", device); for (function=0;function<0x100;function++) { parms.ioctl.in.request = (device << 16) | function; status = smb_raw_ioctl(cli->tree, mem_ctx, &parms); diff --git a/source4/torture/basic/unlink.c b/source4/torture/basic/unlink.c index ca32d5ff96..45ef1c5c63 100644 --- a/source4/torture/basic/unlink.c +++ b/source4/torture/basic/unlink.c @@ -60,7 +60,7 @@ bool torture_unlinktest(struct torture_context *tctx, struct smbcli_state *cli) smbcli_close(cli->tree, fnum); smbcli_unlink(cli->tree, fname); - torture_comment(tctx, "testing unlink after ntcreatex with DELETE access\n"); + torture_comment(tctx, "Testing unlink after ntcreatex with DELETE access\n"); io.ntcreatex.level = RAW_OPEN_NTCREATEX; io.ntcreatex.in.root_fid.fnum = 0; |