Revert "Revert "audio: No need goroutine for tests""

This reverts commit 62a9bb195c.
This commit is contained in:
Hajime Hoshi 2018-12-28 02:18:16 +09:00
parent 62a9bb195c
commit 7956e0ebbc

View File

@ -71,20 +71,14 @@ func TestGC(t *testing.T) {
p = nil
runtime.GC()
ch := make(chan struct{})
go func() {
defer close(ch)
for i := 0; i < 10; i++ {
got = PlayersNumForTesting()
if want := 0; got == want {
return
}
// 100[ms] should be enough all the bytes are consumed.
// TODO: This is a darty hack. Would it be possible to use virtual time?
time.Sleep(100 * time.Millisecond)
for i := 0; i < 10; i++ {
got = PlayersNumForTesting()
if want := 0; got == want {
return
}
t.Errorf("time out")
}()
<-ch
// 100[ms] should be enough all the bytes are consumed.
// TODO: This is a darty hack. Would it be possible to use virtual time?
time.Sleep(100 * time.Millisecond)
}
t.Errorf("time out")
}