diff options
author | Michael Adam <obnox@samba.org> | 2014-10-02 15:49:07 +0200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2014-10-03 08:34:05 +0200 |
commit | 17c78b9711468c2ad8f3f717d2518511d48cdd28 (patch) | |
tree | f9b3f8256a4590c5ae173a6caaffd7e13a02ba63 /source4/torture | |
parent | 218a14f1a396a1511a5a69436f8c037de3606642 (diff) | |
download | samba-17c78b9711468c2ad8f3f717d2518511d48cdd28.tar.gz |
s4:torture:basic: add update into past as error condition in delayed_write_update1a
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/basic/delaywrite.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source4/torture/basic/delaywrite.c b/source4/torture/basic/delaywrite.c index 0dd16a1a6c5..d47c6f9ff00 100644 --- a/source4/torture/basic/delaywrite.c +++ b/source4/torture/basic/delaywrite.c @@ -422,9 +422,12 @@ static bool test_delayed_write_update1a(struct torture_context *tctx, struct smb finfo3.all_info.out.write_time, "Server did not update write time on " "close (wrong!)"); - if (finfo3.all_info.out.write_time < pinfo4.all_info.out.write_time) { - torture_comment(tctx, "Server updated write time on close (correct)\n"); - } + torture_assert(tctx, + pinfo4.all_info.out.write_time > finfo3.all_info.out.write_time, + "Server updated write time on close, but to an earlier point " + "in time"); + + torture_comment(tctx, "Server updated write time on close (correct)\n"); if (fnum1 != -1) smbcli_close(cli->tree, fnum1); |