mirror of
https://github.com/rclone/rclone.git
synced 2024-12-02 13:34:02 +08: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)
|
||
|
}
|