mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 17:04:13 +08:00
57d5de6fba
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g' goimports -w `find . -name \*.go`
20 lines
367 B
Go
20 lines
367 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/cmd/mountlib/mounttest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
mounttest.RunTests(t, mount)
|
|
}
|