Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58f3e43 commit b8cd579Copy full SHA for b8cd579
peer/conn_test.go
@@ -48,7 +48,14 @@ var (
48
)
49
50
func TestMain(m *testing.M) {
51
- goleak.VerifyTestMain(m)
+ // pion/ice doesn't properly close immediately. The solution for this isn't yet known. See:
52
+ // https://github.com/pion/ice/pull/413
53
+ goleak.VerifyTestMain(m,
54
+ goleak.IgnoreTopFunction("github.com/pion/ice/v2.(*Agent).startOnConnectionStateChangeRoutine.func1"),
55
+ goleak.IgnoreTopFunction("github.com/pion/ice/v2.(*Agent).startOnConnectionStateChangeRoutine.func2"),
56
+ goleak.IgnoreTopFunction("github.com/pion/ice/v2.(*Agent).taskLoop"),
57
+ goleak.IgnoreTopFunction("internal/poll.runtime_pollWait"),
58
+ )
59
}
60
61
func TestConn(t *testing.T) {
0 commit comments