Skip to content

Commit

Permalink
reduce the number of connections in the stream muxer stress test (#44)
Browse files Browse the repository at this point in the history
This is occasionally failing the yamux tests on CI on OSX.
  • Loading branch information
marten-seemann authored Dec 14, 2021
1 parent aaf087c commit 13f0141
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions suites/mux/muxer_suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -518,10 +518,10 @@ func SubtestStress1Conn100Stream100Msg(t *testing.T, tr mux.Multiplexer) {
})
}

func SubtestStress50Conn10Stream50Msg(t *testing.T, tr mux.Multiplexer) {
func SubtestStress10Conn10Stream50Msg(t *testing.T, tr mux.Multiplexer) {
SubtestStress(t, Options{
tr: tr,
connNum: 50,
connNum: 10,
streamNum: 10,
msgNum: 50,
msgMax: 100,
Expand Down Expand Up @@ -558,7 +558,7 @@ var subtests = []TransportTest{
SubtestStress1Conn1Stream1Msg,
SubtestStress1Conn1Stream100Msg,
SubtestStress1Conn100Stream100Msg,
SubtestStress50Conn10Stream50Msg,
SubtestStress10Conn10Stream50Msg,
SubtestStress1Conn1000Stream10Msg,
SubtestStress1Conn100Stream100Msg10MB,
SubtestStreamOpenStress,
Expand Down

0 comments on commit 13f0141

Please sign in to comment.