mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 18:34:41 +01:00
14 lines
236 B
Go
14 lines
236 B
Go
|
// +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)
|
||
|
}
|