mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 16:34:30 +01:00
06e3fa3aba
The written out list of tests was replaced with a nested test for mount and cmount. The tests for each VFS cache mode were also replaced with nested tests which makes the output and the code much cleaner.
20 lines
364 B
Go
20 lines
364 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/ncw/rclone/cmd/mountlib/mounttest"
|
|
)
|
|
|
|
func TestMount(t *testing.T) {
|
|
mounttest.RunTests(t, mount)
|
|
}
|