github.com/rclone/rclone@v1.66.1-0.20240517100346-7b89735ae726/vfs/vfstest/read_non_unix.go (about) 1 //go:build !linux && !darwin && !freebsd 2 3 package vfstest 4 5 import ( 6 "runtime" 7 "testing" 8 ) 9 10 // TestReadFileDoubleClose tests double close on read 11 func TestReadFileDoubleClose(t *testing.T) { 12 t.Skip("not supported on " + runtime.GOOS) 13 }