1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-15 07:43:35 +00:00

mounttest: wait for all background Close/Release after writing a file

The filesystem does a certain amount of things asynchronously waiting
for the file to be released after writing it means everything should
be in a consistent state.
This commit is contained in:
Nick Craig-Wood
2017-11-18 15:50:38 +00:00
parent 60945d0a37
commit e98e550021
4 changed files with 16 additions and 3 deletions

View File

@@ -45,5 +45,6 @@ func TestWriteFileDoubleClose(t *testing.T) {
err = syscall.Close(fd2)
assert.NoError(t, err)
run.waitForWriters()
run.rm(t, "testdoubleclose")
}