1
0
mirror of https://github.com/rclone/rclone.git synced 2025-06-04 05:57:59 +02:00
rclone/cmd/mountlib/mounttest/read_non_unix.go

14 lines
233 B
Go
Raw Normal View History

2017-05-10 11:19:32 +01:00
// +build !linux,!darwin,!freebsd
package mounttest
import (
"runtime"
"testing"
)
// TestReadFileDoubleClose tests double close on read
func TestReadFileDoubleClose(t *testing.T) {
t.Skip("not supported on " + runtime.GOOS)
}