Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reduce the number of connections in the stream muxer stress test #44

Merged
merged 1 commit into from
Dec 14, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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