mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
19 lines
362 B
Go
19 lines
362 B
Go
//go:build linux || freebsd
|
|
// +build linux freebsd
|
|
|
|
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)
|
|
}
|