2021-09-09 15:25:25 +03:00
|
|
|
//go:build !linux && !darwin && !freebsd
|
2017-05-10 11:19:32 +01:00
|
|
|
|
2020-04-16 13:33:46 +01:00
|
|
|
package vfstest
|
2017-05-10 11:19:32 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// TestReadFileDoubleClose tests double close on read
|
|
|
|
func TestReadFileDoubleClose(t *testing.T) {
|
|
|
|
t.Skip("not supported on " + runtime.GOOS)
|
|
|
|
}
|