mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
swarm/api: disable flaky TestClientUploadDownloadRawEncrypted with -race
This commit is contained in:
parent
5facd22fa2
commit
73f0da1425
1 changed files with 8 additions and 0 deletions
|
|
@ -25,6 +25,8 @@ import (
|
||||||
"sort"
|
"sort"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/ethereum/go-ethereum/swarm/testutil"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/swarm/storage"
|
"github.com/ethereum/go-ethereum/swarm/storage"
|
||||||
"github.com/ethereum/go-ethereum/swarm/storage/feed/lookup"
|
"github.com/ethereum/go-ethereum/swarm/storage/feed/lookup"
|
||||||
|
|
||||||
|
|
@ -43,7 +45,13 @@ func serverFunc(api *api.API) swarmhttp.TestServer {
|
||||||
func TestClientUploadDownloadRaw(t *testing.T) {
|
func TestClientUploadDownloadRaw(t *testing.T) {
|
||||||
testClientUploadDownloadRaw(false, t)
|
testClientUploadDownloadRaw(false, t)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestClientUploadDownloadRawEncrypted(t *testing.T) {
|
func TestClientUploadDownloadRawEncrypted(t *testing.T) {
|
||||||
|
if testutil.RaceEnabled {
|
||||||
|
t.Skip("flaky with -race on Travis")
|
||||||
|
// See: https://github.com/ethersphere/go-ethereum/issues/1254
|
||||||
|
}
|
||||||
|
|
||||||
testClientUploadDownloadRaw(true, t)
|
testClientUploadDownloadRaw(true, t)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue