Browse Source

test/consensus: improve WaitGroup handling in Byzantine tests (#5861)

Fixes #5845.
pull/5893/head
Erik Grinaker 3 years ago
committed by Erik Grinaker
parent
commit
15eed81f12
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      consensus/byzantine_test.go

+ 3
- 3
consensus/byzantine_test.go View File

@ -166,14 +166,14 @@ func TestByzantinePrevoteEquivocation(t *testing.T) {
evidenceFromEachValidator := make([]types.Evidence, nValidators)
wg := new(sync.WaitGroup)
wg.Add(4)
for i := 0; i < nValidators; i++ {
wg.Add(1)
go func(i int) {
defer wg.Done()
for msg := range blocksSubs[i].Out() {
block := msg.Data().(types.EventDataNewBlock).Block
if len(block.Evidence.Evidence) != 0 {
evidenceFromEachValidator[i] = block.Evidence.Evidence[0]
wg.Done()
return
}
}
@ -340,8 +340,8 @@ func TestByzantineConflictingProposalsWithPartition(t *testing.T) {
// wait till everyone makes the first new block
// (one of them already has)
wg := new(sync.WaitGroup)
wg.Add(2)
for i := 1; i < N-1; i++ {
wg.Add(1)
go func(j int) {
<-blocksSubs[j].Out()
wg.Done()


Loading…
Cancel
Save