mirror of
https://github.com/rclone/rclone.git
synced 2025-08-09 13:55:15 +02:00
mount: don't build on go1.10 as bazil/fuse no longer supports it
This commit is contained in:
20
backend/cache/cache_mount_other_test.go
vendored
Normal file
20
backend/cache/cache_mount_other_test.go
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// +build !linux !go1.11
|
||||
// +build !darwin !go1.11
|
||||
// +build !freebsd !go1.11
|
||||
// +build !windows
|
||||
|
||||
package cache_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/rclone/rclone/fs"
|
||||
)
|
||||
|
||||
func (r *run) mountFs(t *testing.T, f fs.Fs) {
|
||||
panic("mountFs not defined for this platform")
|
||||
}
|
||||
|
||||
func (r *run) unmountFs(t *testing.T, f fs.Fs) {
|
||||
panic("unmountFs not defined for this platform")
|
||||
}
|
Reference in New Issue
Block a user