mountlib: fix cross platform tests

This commit is contained in:
Nick Craig-Wood 2017-05-10 11:19:32 +01:00
parent 204a19e67f
commit f9500729b7
4 changed files with 129 additions and 0 deletions

View 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)
}