forked from TrueCloudLab/rclone
mountlib: fix cross platform tests
This commit is contained in:
parent
204a19e67f
commit
f9500729b7
4 changed files with 129 additions and 0 deletions
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)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue