2021-09-09 12:25:25 +00:00
|
|
|
//go:build linux || (darwin && amd64)
|
2016-11-21 20:52:32 +00:00
|
|
|
// +build linux darwin,amd64
|
|
|
|
|
|
|
|
package mount2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-04 17:20:54 +00:00
|
|
|
"github.com/rclone/rclone/fstest/testy"
|
2020-04-16 12:33:46 +00:00
|
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
2016-11-21 20:52:32 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMount(t *testing.T) {
|
2021-09-04 17:20:54 +00:00
|
|
|
testy.SkipUnreliable(t)
|
2020-04-16 12:33:46 +00:00
|
|
|
vfstest.RunTests(t, false, mount)
|
2016-11-21 20:52:32 +00:00
|
|
|
}
|