mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 05:28:09 +08:00
14 lines
238 B
Go
14 lines
238 B
Go
//go:build !linux && !darwin && !freebsd
|
|
|
|
package vfstest
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
)
|
|
|
|
// TestReadFileDoubleClose tests double close on read
|
|
func TestReadFileDoubleClose(t *testing.T) {
|
|
t.Skip("not supported on " + runtime.GOOS)
|
|
}
|