1
mirror of https://github.com/rclone/rclone synced 2024-12-03 13:14:37 +01:00
rclone/vfs/vfstest/read_non_unix.go
2021-09-09 20:43:59 +03:00

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)
}