rclone/cmd/mountlib/mounttest/read_non_unix.go
2017-05-15 16:56:46 +01:00

14 lines
233 B
Go

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