mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 14:38:18 +08:00
21 lines
452 B
Go
21 lines
452 B
Go
//go:build cmount && cgo && (linux || darwin || freebsd || windows) && (!race || !windows)
|
|
// +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)
|
|
}
|