summaryrefslogtreecommitdiff
path: root/source4/torture/raw/streams.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-12-22 11:58:38 -0800
committerJeremy Allison <jra@samba.org>2008-12-22 11:58:38 -0800
commitf1389a39508735bd3133bac9da5eee3c73342d1f (patch)
treed7a50df20f4cec4ba077f2e98cec69b085075ea3 /source4/torture/raw/streams.c
parent5aadfe29f07687fe47bcb23b36313e4fc6ada6ee (diff)
downloadsamba-f1389a39508735bd3133bac9da5eee3c73342d1f.tar.gz
samba-f1389a39508735bd3133bac9da5eee3c73342d1f.tar.bz2
samba-f1389a39508735bd3133bac9da5eee3c73342d1f.zip
Make it clearer when RAW-STREAMS is failing (don't always print names).
Jeremy.
Diffstat (limited to 'source4/torture/raw/streams.c')
-rw-r--r--source4/torture/raw/streams.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/source4/torture/raw/streams.c b/source4/torture/raw/streams.c
index 4e2a204cb6..ba74530c6f 100644
--- a/source4/torture/raw/streams.c
+++ b/source4/torture/raw/streams.c
@@ -996,14 +996,16 @@ static bool test_stream_names2(struct torture_context *tctx,
break;
}
- printf("(%s) %s:Stream%c0x%02X:$DATA%s => expected[%s]\n",
- __location__, fname, isprint(i)?(char)i:' ', i,
- isprint(i)?"":" (not printable)",
- nt_errstr(expected));
io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN;
io.ntcreatex.in.fname = path;
status = smb_raw_open(cli->tree, mem_ctx, &io);
+ if (!NT_STATUS_EQUAL(status, expected)) {
+ printf("(%s) %s:Stream%c0x%02X:$DATA%s => expected[%s]\n",
+ __location__, fname, isprint(i)?(char)i:' ', i,
+ isprint(i)?"":" (not printable)",
+ nt_errstr(expected));
+ }
CHECK_STATUS(status, expected);
talloc_free(path);