diff options
Diffstat (limited to 'swarm/storage')
-rw-r--r-- | swarm/storage/ldbstore_test.go | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/swarm/storage/ldbstore_test.go b/swarm/storage/ldbstore_test.go index 70b0d6bb4..1cd4947be 100644 --- a/swarm/storage/ldbstore_test.go +++ b/swarm/storage/ldbstore_test.go @@ -27,12 +27,11 @@ import ( "strings" "testing" - "github.com/ethereum/go-ethereum/swarm/testutil" - "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/swarm/chunk" "github.com/ethereum/go-ethereum/swarm/log" "github.com/ethereum/go-ethereum/swarm/storage/mock/mem" + "github.com/ethereum/go-ethereum/swarm/testutil" ldberrors "github.com/syndtr/goleveldb/leveldb/errors" ) @@ -606,6 +605,10 @@ func TestLDBStoreCollectGarbageAccessUnlikeIndex(t *testing.T) { } func TestCleanIndex(t *testing.T) { + if testutil.RaceEnabled { + t.Skip("disabled because it times out with race detector") + } + capacity := 5000 n := 3 |