all: Add copy-on-write filesystem support (fixes #4271) (#6746)

This commit is contained in:
Audrius Butkevicius
2020-06-18 08:15:47 +02:00
committed by GitHub
parent 273cc9cef8
commit 4812fd3ec1
26 changed files with 858 additions and 84 deletions
+1 -1
View File
@@ -139,7 +139,7 @@ func TestRenameOrCopy(t *testing.T) {
content = string(buf)
}
err := osutil.RenameOrCopy(test.src, test.dst, test.file, "new")
err := osutil.RenameOrCopy(fs.CopyRangeMethodStandard, test.src, test.dst, test.file, "new")
if err != nil {
t.Fatal(err)
}