mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 08:15:19 +08:00
18 lines
368 B
Go
18 lines
368 B
Go
// +build linux,go1.11 darwin,go1.11 freebsd,go1.11
|
|
|
|
package mount
|
|
|
|
import (
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/cmd/mountlib/mounttest"
|
|
)
|
|
|
|
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")
|
|
}
|
|
mounttest.RunTests(t, mount)
|
|
}
|