mirror of
https://github.com/rclone/rclone.git
synced 2025-08-14 07:49:00 +02:00
fstest: let backends advertise maximum file size
This commit is contained in:
committed by
Nick Craig-Wood
parent
1e4691f951
commit
661dc568f3
@ -115,6 +115,9 @@ func TestMultithreadCopy(t *testing.T) {
|
||||
{size: multithreadChunkSize*2 + 1, streams: 2},
|
||||
} {
|
||||
t.Run(fmt.Sprintf("%+v", test), func(t *testing.T) {
|
||||
if *fstest.SizeLimit > 0 && int64(test.size) > *fstest.SizeLimit {
|
||||
t.Skipf("exceeded file size limit %d > %d", test.size, *fstest.SizeLimit)
|
||||
}
|
||||
var err error
|
||||
contents := random.String(test.size)
|
||||
t1 := fstest.Time("2001-02-03T04:05:06.499999999Z")
|
||||
|
Reference in New Issue
Block a user