rclone/vfs/vfstest/read_non_unix.go

14 lines
238 B
Go
Raw Normal View History

2021-09-09 20:25:25 +08:00
//go:build !linux && !darwin && !freebsd
2017-05-10 18:19:32 +08:00
package vfstest
2017-05-10 18:19:32 +08:00
import (
"runtime"
"testing"
)
// TestReadFileDoubleClose tests double close on read
func TestReadFileDoubleClose(t *testing.T) {
t.Skip("not supported on " + runtime.GOOS)
}