Browse Source

test: disable E2E misbehaviors due to bugs (#5569)

Disables misbehaviors in E2E testnets due to failures caused by #5554 and #5560. Should be re-enabled once these are fixed.
pull/5580/head
Erik Grinaker 4 years ago
committed by Erik Grinaker
parent
commit
f093d5837b
2 changed files with 9 additions and 3 deletions
  1. +5
    -2
      test/e2e/generator/generate.go
  2. +4
    -1
      test/e2e/networks/ci.toml

+ 5
- 2
test/e2e/generator/generate.go View File

@ -41,8 +41,11 @@ var (
"restart": 0.1,
}
nodeMisbehaviors = weightedChoice{
misbehaviorOption{"double-prevote"}: 1,
misbehaviorOption{}: 9,
// FIXME Disabled due to:
// https://github.com/tendermint/tendermint/issues/5554
// https://github.com/tendermint/tendermint/issues/5560
// misbehaviorOption{"double-prevote"}: 1,
misbehaviorOption{}: 9,
}
)


+ 4
- 1
test/e2e/networks/ci.toml View File

@ -36,7 +36,10 @@ seeds = ["seed01"]
seeds = ["seed01"]
snapshot_interval = 5
perturb = ["disconnect"]
misbehaviors = { 1012 = "double-prevote", 1018 = "double-prevote" }
# FIXME Evidence handling causes panics and halts
# https://github.com/tendermint/tendermint/issues/5554
# https://github.com/tendermint/tendermint/issues/5560
#misbehaviors = { 1012 = "double-prevote", 1018 = "double-prevote" }
[node.validator02]
seeds = ["seed02"]


Loading…
Cancel
Save