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.
20 lines
361 B
Go
20 lines
361 B
Go
// +build cmount
|
|
// +build cgo
|
|
// +build linux darwin freebsd windows
|
|
// +build !race !windows
|
|
|
|
// FIXME this doesn't work with the race detector under Windows either
|
|
// hanging or producing lots of differences.
|
|
|
|
package cmount
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/vfs/vfstest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
vfstest.RunTests(t, false, mount)
|
|
}
|