mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-18 09:53:48 +00:00
p2p/protocols: disable XTestMultiplePeersDropSelf and XTestMultiplePeersDropOther
This commit is contained in:
parent
3871a86945
commit
baa7bef57d
1 changed files with 2 additions and 2 deletions
|
|
@ -360,14 +360,14 @@ func runMultiplePeers(t *testing.T, peer int, errs ...error) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMultiplePeersDropSelf(t *testing.T) {
|
func XTestMultiplePeersDropSelf(t *testing.T) {
|
||||||
runMultiplePeers(t, 0,
|
runMultiplePeers(t, 0,
|
||||||
fmt.Errorf("subprotocol error"),
|
fmt.Errorf("subprotocol error"),
|
||||||
fmt.Errorf("Message handler error: (msg code 3): dropped"),
|
fmt.Errorf("Message handler error: (msg code 3): dropped"),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestMultiplePeersDropOther(t *testing.T) {
|
func XTestMultiplePeersDropOther(t *testing.T) {
|
||||||
runMultiplePeers(t, 1,
|
runMultiplePeers(t, 1,
|
||||||
fmt.Errorf("Message handler error: (msg code 3): dropped"),
|
fmt.Errorf("Message handler error: (msg code 3): dropped"),
|
||||||
fmt.Errorf("subprotocol error"),
|
fmt.Errorf("subprotocol error"),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue