summaryrefslogtreecommitdiffstats
path: root/source/torture/raw/write.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-10-15 01:37:06 +0000
committerAndrew Tridgell <tridge@samba.org>2004-10-15 01:37:06 +0000
commit24fee0e26e8af50ba9e4f4c76bab9714c0775917 (patch)
treeefbeb438e614777dd7dce8d78fce9c7af06e6ce1 /source/torture/raw/write.c
parent89eebbbaef5921303c382aa25b3846d6c78d9230 (diff)
downloadsamba-24fee0e26e8af50ba9e4f4c76bab9714c0775917.tar.gz
samba-24fee0e26e8af50ba9e4f4c76bab9714c0775917.tar.xz
samba-24fee0e26e8af50ba9e4f4c76bab9714c0775917.zip
r2983: report a failure if a server doesn't update the write time at all
after 2 minutes
Diffstat (limited to 'source/torture/raw/write.c')
-rw-r--r--source/torture/raw/write.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/source/torture/raw/write.c b/source/torture/raw/write.c
index 2ea4cdcadff..276e5398ac0 100644
--- a/source/torture/raw/write.c
+++ b/source/torture/raw/write.c
@@ -690,6 +690,7 @@ static BOOL test_delayed_write_update(struct smbcli_state *cli, TALLOC_CTX *mem_
fnum1 = smbcli_open(cli->tree, fname, O_RDWR|O_CREAT, DENY_NONE);
if (fnum1 == -1) {
+ printf("Failed to open %s\n", fname);
return False;
}
@@ -708,7 +709,7 @@ static BOOL test_delayed_write_update(struct smbcli_state *cli, TALLOC_CTX *mem_
nt_time_string(mem_ctx, finfo1.basic_info.out.write_time));
/* 3 second delay to ensure we get past any 2 second time
- granularity (older systems may have that */
+ granularity (older systems may have that) */
sleep(3);
written = smbcli_write(cli->tree, fnum1, 0, "x", 0, 1);
@@ -738,6 +739,12 @@ static BOOL test_delayed_write_update(struct smbcli_state *cli, TALLOC_CTX *mem_
sleep(1);
fflush(stdout);
}
+
+ if (finfo1.basic_info.out.write_time == finfo2.basic_info.out.write_time) {
+ printf("Server did not update write time?!\n");
+ ret = False;
+ }
+
if (fnum1 != -1)
smbcli_close(cli->tree, fnum1);