From 7da94cc4a664521be279b019e9f32121cd410193 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sun, 11 Apr 2010 01:39:06 +0200 Subject: 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. --- source4/torture/smb2/notify.c | 78 +++++++++++++++++++++---------------------- 1 file changed, 39 insertions(+), 39 deletions(-) (limited to 'source4/torture/smb2/notify.c') diff --git a/source4/torture/smb2/notify.c b/source4/torture/smb2/notify.c index d1fe5985b1..313ef6848f 100644 --- a/source4/torture/smb2/notify.c +++ b/source4/torture/smb2/notify.c @@ -271,14 +271,14 @@ static bool torture_smb2_notify_dir(struct torture_context *torture, notify.smb2.in.file.handle = h1; notify.smb2.in.recursive = true; - torture_comment(torture, "testing notify cancel\n"); + torture_comment(torture, "Testing notify cancel\n"); req = smb2_notify_send(tree1, &(notify.smb2)); smb2_cancel(req); status = smb2_notify_recv(req, torture, &(notify.smb2)); CHECK_STATUS(status, NT_STATUS_CANCELLED); - torture_comment(torture, "testing notify mkdir\n"); + torture_comment(torture, "Testing notify mkdir\n"); req = smb2_notify_send(tree1, &(notify.smb2)); smb2_util_mkdir(tree2, fname); @@ -290,7 +290,7 @@ static bool torture_smb2_notify_dir(struct torture_context *torture, CHECK_VAL(notify.smb2.out.changes[0].action, NOTIFY_ACTION_ADDED); CHECK_WIRE_STR(notify.smb2.out.changes[0].name, "subdir-name"); - torture_comment(torture, "testing notify rmdir\n"); + torture_comment(torture, "Testing notify rmdir\n"); req = smb2_notify_send(tree1, &(notify.smb2)); smb2_util_rmdir(tree2, fname); @@ -302,7 +302,7 @@ static bool torture_smb2_notify_dir(struct torture_context *torture, CHECK_WIRE_STR(notify.smb2.out.changes[0].name, "subdir-name"); torture_comment(torture, - "testing notify mkdir - rmdir - mkdir - rmdir\n"); + "Testing notify mkdir - rmdir - mkdir - rmdir\n"); smb2_util_mkdir(tree2, fname); smb2_util_rmdir(tree2, fname); @@ -324,7 +324,7 @@ static bool torture_smb2_notify_dir(struct torture_context *torture, count = torture_numops; torture_comment(torture, - "testing buffered notify on create of %d files\n", count); + "Testing buffered notify on create of %d files\n", count); for (i=0;i