mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 09:41:44 +08:00
14 lines
233 B
Go
14 lines
233 B
Go
|
// +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)
|
||
|
}
|