rclone/vfs/vfstest/read_non_unix.go

14 lines
238 B
Go

//go:build !linux && !darwin && !freebsd
package vfstest
import (
"runtime"
"testing"
)
// TestReadFileDoubleClose tests double close on read
func TestReadFileDoubleClose(t *testing.T) {
t.Skip("not supported on " + runtime.GOOS)
}