rclone/vfs/vfstest/read_non_unix.go

15 lines
272 B
Go
Raw Normal View History

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