vfs: fix chunker integration test

This commit is contained in:
dougal
2025-10-03 17:10:24 +01:00
committed by dougal
parent f57a178719
commit 79281354c7
+4
View File
@@ -115,6 +115,10 @@ func TestZipManySubDirs(t *testing.T) {
func TestZipLargeFiles(t *testing.T) { func TestZipLargeFiles(t *testing.T) {
r, vfs := newTestVFS(t) r, vfs := newTestVFS(t)
if strings.HasPrefix(r.Fremote.Name(), "TestChunker") {
t.Skip("skipping test as chunker too slow")
}
data := random.String(5 * 1024 * 1024) data := random.String(5 * 1024 * 1024)
sum := sha256.Sum256([]byte(data)) sum := sha256.Sum256([]byte(data))