rclone/cmd/mountlib/mounttest/write_non_unix.go

14 lines
236 B
Go
Raw Normal View History

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