mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-12-24 18:58:54 +01:00
Revert "audio: No need goroutine for tests"
This reverts commit 7740656054
.
This commit is contained in:
parent
042b30a516
commit
62a9bb195c
@ -71,6 +71,9 @@ 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 {
|
||||
@ -81,4 +84,7 @@ func TestGC(t *testing.T) {
|
||||
time.Sleep(100 * time.Millisecond)
|
||||
}
|
||||
t.Errorf("time out")
|
||||
}()
|
||||
|
||||
<-ch
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user