diff options
author | James Peach <jpeach@samba.org> | 2010-08-06 15:25:12 -0700 |
---|---|---|
committer | James Peach <jpeach@samba.org> | 2010-08-11 11:11:11 -0700 |
commit | 88d48a7d92ca7dedc5357a1e7caab544e586bafb (patch) | |
tree | 32290b1d853c68ff4effeac25f966c31560e32c7 /source4 | |
parent | c43e832c5160fbffb31ddd64b43dbbc8124b1ca0 (diff) | |
download | samba-88d48a7d92ca7dedc5357a1e7caab544e586bafb.tar.gz samba-88d48a7d92ca7dedc5357a1e7caab544e586bafb.tar.xz samba-88d48a7d92ca7dedc5357a1e7caab544e586bafb.zip |
smbtorture: Make BASE-OPENATTR report a failure if it fails.
Diffstat (limited to 'source4')
-rw-r--r-- | source4/torture/basic/attr.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/torture/basic/attr.c b/source4/torture/basic/attr.c index 49e8a5975c8..66d17b439c9 100644 --- a/source4/torture/basic/attr.c +++ b/source4/torture/basic/attr.c @@ -121,7 +121,8 @@ bool torture_openattrtest(struct torture_context *tctx, if (fnum1 == -1) { for (l = 0; l < ARRAY_SIZE(attr_results); l++) { if (attr_results[l].num == k) { - torture_comment(tctx, "[%d] trunc open 0x%x -> 0x%x of %s failed - should have succeeded !(%s)\n", + torture_result(tctx, TORTURE_FAIL, + "[%d] trunc open 0x%x -> 0x%x of %s failed - should have succeeded !(%s)", k, open_attrs_table[i], open_attrs_table[j], fname, smbcli_errstr(cli1->tree)); @@ -160,7 +161,8 @@ bool torture_openattrtest(struct torture_context *tctx, if (attr != attr_results[l].result_attr || open_attrs_table[i] != attr_results[l].init_attr || open_attrs_table[j] != attr_results[l].trunc_attr) { - torture_comment(tctx, "[%d] getatr check failed. [0x%x] trunc [0x%x] got attr 0x%x, should be 0x%x\n", + torture_result(tctx, TORTURE_FAIL, + "[%d] getatr check failed. [0x%x] trunc [0x%x] got attr 0x%x, should be 0x%x", k, open_attrs_table[i], open_attrs_table[j], (unsigned int)attr, |