mirror of
https://github.com/miekg/dns.git
synced 2025-12-15 16:51:48 +01:00
Test: rework concurrentExchange (#576)
See issue #575. Try to fix (and maybe trigger it)
This commit is contained in:
parent
99c447f9f6
commit
7994cb36ea
@ -568,11 +568,11 @@ func TestConcurrentExchanges(t *testing.T) {
|
||||
wg.Add(len(r))
|
||||
for i := 0; i < len(r); i++ {
|
||||
go func(i int) {
|
||||
defer wg.Done()
|
||||
r[i], _, _ = c.Exchange(m.Copy(), addrstr)
|
||||
if r[i] == nil {
|
||||
t.Fatalf("response %d is nil", i)
|
||||
t.Errorf("response %d is nil", i)
|
||||
}
|
||||
wg.Done()
|
||||
}(i)
|
||||
}
|
||||
select {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user