mirror of
https://github.com/rclone/rclone.git
synced 2025-08-09 13:55:15 +02:00
mountlib: fix cross platform tests
This commit is contained in:
13
cmd/mountlib/mounttest/read_non_unix.go
Normal file
13
cmd/mountlib/mounttest/read_non_unix.go
Normal file
@ -0,0 +1,13 @@
|
||||
// +build !linux,!darwin,!freebsd
|
||||
|
||||
package mounttest
|
||||
|
||||
import (
|
||||
"runtime"
|
||||
"testing"
|
||||
)
|
||||
|
||||
// TestReadFileDoubleClose tests double close on read
|
||||
func TestReadFileDoubleClose(t *testing.T) {
|
||||
t.Skip("not supported on " + runtime.GOOS)
|
||||
}
|
Reference in New Issue
Block a user