1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-16 00:04:40 +00:00

serve s3: document multipart copy doesn't work #7454

This puts in a workaround for the tests also
This commit is contained in:
Nick Craig-Wood
2023-11-24 15:49:33 +00:00
parent 8f47b6746d
commit d8855b21eb
3 changed files with 18 additions and 3 deletions

View File

@@ -2146,6 +2146,10 @@ func Run(t *testing.T, opt *Opt) {
t.Skip("skipping as ChunkedUpload.Skip is set")
}
if strings.HasPrefix(f.Name(), "serves3") {
t.Skip("FIXME skip test - see #7454")
}
do, _ := f.(SetCopyCutoffer)
if do == nil {
t.Skipf("%T does not implement SetCopyCutoff", f)