Files
cloudly-min/.rclone_repo/cmd/mountlib/mounttest/read_non_unix.go
2020-01-13 03:37:51 +00:00

14 lines
233 B
Go
Executable File

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