cache: disable race tests until bbolt is fixed

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.
s3-about
Nick Craig-Wood 2020-02-27 08:05:28 +00:00
parent 3855c003ce
commit 87d856d71b
6 changed files with 6 additions and 0 deletions

View File

@ -1,4 +1,5 @@
// +build !plan9
// +build !race
package cache_test

View File

@ -2,6 +2,7 @@
// +build !darwin !go1.13
// +build !freebsd !go1.13
// +build !windows
// +build !race
package cache_test

View File

@ -1,4 +1,5 @@
// +build linux,go1.13 darwin,go1.13 freebsd,go1.13
// +build !race
package cache_test

View File

@ -1,4 +1,5 @@
// +build windows
// +build !race
package cache_test

View File

@ -1,6 +1,7 @@
// Test Cache filesystem interface
// +build !plan9
// +build !race
package cache_test

View File

@ -1,4 +1,5 @@
// +build !plan9
// +build !race
package cache_test