mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-17 18:30:45 +00:00
skip long flaky tests
This commit is contained in:
parent
8fc407f80d
commit
0bd7d25d52
1 changed files with 2 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ import (
|
||||||
// Tests that a created snapshot with a minimal service only contains the expected connections
|
// Tests that a created snapshot with a minimal service only contains the expected connections
|
||||||
// and that a network when loaded with this snapshot only contains those same connections
|
// and that a network when loaded with this snapshot only contains those same connections
|
||||||
func TestSnapshot(t *testing.T) {
|
func TestSnapshot(t *testing.T) {
|
||||||
|
t.Skip("Test unstable")
|
||||||
|
|
||||||
// PART I
|
// PART I
|
||||||
// create snapshot from ring network
|
// create snapshot from ring network
|
||||||
|
|
@ -283,6 +284,7 @@ OUTER_TWO:
|
||||||
// connected in a ring topology, checks that all nodes successfully handshake
|
// connected in a ring topology, checks that all nodes successfully handshake
|
||||||
// with each other and that a snapshot fully represents the desired topology
|
// with each other and that a snapshot fully represents the desired topology
|
||||||
func TestNetworkSimulation(t *testing.T) {
|
func TestNetworkSimulation(t *testing.T) {
|
||||||
|
t.Skip("Test flaky")
|
||||||
// create simulation network with 20 testService nodes
|
// create simulation network with 20 testService nodes
|
||||||
adapter := adapters.NewSimAdapter(adapters.Services{
|
adapter := adapters.NewSimAdapter(adapters.Services{
|
||||||
"test": newTestService,
|
"test": newTestService,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue