mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
fd39cbc193
The tests are now run for the mount commands and for the plain VFS. This makes the tests much easier to debug when running with a VFS than through a mount.
14 lines
231 B
Go
14 lines
231 B
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)
|
|
}
|