diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-07-25 09:57:14 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:01:18 -0500 |
commit | 890c42045dde106d855894d879aaead651cba16f (patch) | |
tree | 6790fd931836489af40a879e1695f238ed1ac066 /source4/torture/raw | |
parent | a7416c08945c5eae5ef5e896439119fb3379f482 (diff) | |
download | samba-890c42045dde106d855894d879aaead651cba16f.tar.gz samba-890c42045dde106d855894d879aaead651cba16f.tar.bz2 samba-890c42045dde106d855894d879aaead651cba16f.zip |
r24041: After metze's ack, check in torture_comment from Zack Krisch
<zack.kirsch@isilon.com>
(This used to be commit b1148b7ab84a18d4fea771c887ed7d535841982b)
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/oplock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/raw/oplock.c b/source4/torture/raw/oplock.c index 6411b5b524..d2e15f8e82 100644 --- a/source4/torture/raw/oplock.c +++ b/source4/torture/raw/oplock.c @@ -27,8 +27,8 @@ #define CHECK_VAL(v, correct) do { \ if ((v) != (correct)) { \ - torture_result(tctx, TORTURE_FAIL, __location__": wrong value for %s got 0x%x - should be 0x%x", \ - #v, (int)v, (int)correct); \ + torture_comment(tctx, "(%s): wrong value for %s got 0x%x - should be 0x%x\n", \ + __location__, #v, (int)v, (int)correct); \ ret = False; \ }} while (0) |