1
mirror of https://github.com/rclone/rclone synced 2025-03-31 17:09:19 +02:00
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)
}