mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +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)
|
||
|
}
|