rclone/vfs/vfstest/read_non_unix.go

15 lines
272 B
Go

//go:build !linux && !darwin && !freebsd
// +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)
}