swarm/pss: Skip tests for 3 and 4 node networks.

This commit is contained in:
Anton Evangelatov 2017-12-28 14:41:23 +01:00 committed by lash
parent d6d5b6285a
commit 4177ea74a7

View file

@ -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)
} }