s4:torture: use torture_assert instead of torture_comment and return in defer_open...
authorMichael Adam <obnox@samba.org>
Thu, 24 Jul 2014 22:24:56 +0000 (00:24 +0200)
committerJeremy Allison <jra@samba.org>
Thu, 7 Aug 2014 20:12:12 +0000 (22:12 +0200)
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source4/torture/basic/base.c

index 66c6d41fe0e169aebc486ec5ece2893910511f87..1d04b358396c268d9b1a40367e0dcbbc5cad296e 100644 (file)
@@ -686,10 +686,11 @@ static bool run_deferopen(struct torture_context *tctx, struct smbcli_state *cli
                        }
                } while (NT_STATUS_EQUAL(smbcli_nt_error(cli->tree),NT_STATUS_SHARING_VIOLATION));
 
-               if (fnum == -1) {
-                       torture_comment(tctx,"Failed to open %s, error=%s\n", fname, smbcli_errstr(cli->tree));
-                       return false;
-               }
+               torture_assert(tctx, fnum != -1,
+                              talloc_asprintf(tctx,
+                                       "pid %u: Failed to open %s, error=%s\n",
+                                       (unsigned)getpid(), fname,
+                                       smbcli_errstr(cli->tree)));
 
                torture_comment(tctx, "pid %u: open %d\n", (unsigned)getpid(), i);