mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-17 01:13:45 +00:00
swarm/pss: Skip tests for 3 and 4 node networks.
This commit is contained in:
parent
d6d5b6285a
commit
4177ea74a7
1 changed files with 13 additions and 5 deletions
|
|
@ -637,11 +637,19 @@ func worker(id int, jobs <-chan Job, rpcs map[discover.NodeID]*rpc.Client, pubke
|
||||||
//
|
//
|
||||||
// ( some tests are commented out because of resource limitations on Travis)
|
// ( some tests are commented out because of resource limitations on Travis)
|
||||||
func TestNetwork(t *testing.T) {
|
func TestNetwork(t *testing.T) {
|
||||||
t.Run("3/2000/4/sock", testNetwork)
|
//t.Run("3/2000/4/sock", testNetwork)
|
||||||
t.Run("4/2000/4/sock", testNetwork)
|
//t.Run("4/2000/4/sock", testNetwork)
|
||||||
// t.Run("8/2000/4/sock", testNetwork)
|
t.Run("8/2000/4/sock", testNetwork)
|
||||||
// t.Run("16/2000/4/sock", testNetwork)
|
t.Run("16/2000/4/sock", testNetwork)
|
||||||
// t.Run("32/2000/4/sock", testNetwork)
|
t.Run("8/3000/4/sock", testNetwork)
|
||||||
|
t.Run("16/3000/4/sock", testNetwork)
|
||||||
|
//t.Run("32/2000/4/sock", testNetwork)
|
||||||
|
|
||||||
|
t.Run("8/2000/4/sim", testNetwork)
|
||||||
|
t.Run("16/2000/4/sim", testNetwork)
|
||||||
|
t.Run("8/3000/4/sim", testNetwork)
|
||||||
|
t.Run("16/3000/4/sim", testNetwork)
|
||||||
|
//t.Run("32/2000/4/sim", testNetwork)
|
||||||
// t.Run("64/2000/4/sim", testNetwork)
|
// t.Run("64/2000/4/sim", testNetwork)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue