rclone/cmd/mount/mount_test.go
Nick Craig-Wood 8ac2f52b6e mount: disable bazil/fuse based mount on macOS #4393
The library is no longer supported on macOS.
2020-10-29 13:34:39 +00:00

18 lines
348 B
Go

// +build linux,go1.13 freebsd,go1.13
package mount
import (
"runtime"
"testing"
"github.com/rclone/rclone/vfs/vfstest"
)
func TestMount(t *testing.T) {
if runtime.NumCPU() <= 2 {
t.Skip("FIXME skipping mount tests as they lock up on <= 2 CPUs - See: https://github.com/rclone/rclone/issues/3154")
}
vfstest.RunTests(t, false, mount)
}