mirror of
https://github.com/rclone/rclone.git
synced 2025-12-15 07:43:35 +00:00
mountlib: fix cross platform tests
This commit is contained in:
13
cmd/mountlib/mounttest/write_non_unix.go
Normal file
13
cmd/mountlib/mounttest/write_non_unix.go
Normal file
@@ -0,0 +1,13 @@
|
||||
// +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)
|
||||
}
|
||||
Reference in New Issue
Block a user