mirror of
https://github.com/rclone/rclone.git
synced 2024-11-23 17:04:01 +01:00
87d856d71b
bbolt fails with "unsafe pointer conversion" under the go1.14 race detector. Disable race tests until https://github.com/etcd-io/bbolt/issues/187 is fixed.
22 lines
388 B
Go
22 lines
388 B
Go
// +build !linux !go1.13
|
|
// +build !darwin !go1.13
|
|
// +build !freebsd !go1.13
|
|
// +build !windows
|
|
// +build !race
|
|
|
|
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")
|
|
}
|