Skip to content

Commit

Permalink
Skip test if golang/go#70915 is detected
Browse files Browse the repository at this point in the history
  • Loading branch information
rthellend committed Dec 25, 2024
1 parent 6a6d073 commit 9647186
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ech_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ func TestConnRetry(t *testing.T) {
t.Logf("retry ConfigList: %v", configList)
})

if len(configList) == 0 {
t.Skip("Depends on https://github.com/golang/go/issues/70915")
}

t.Run("Use retry configlist", func(t *testing.T) {
clientConn, err := net.Dial("tcp", ln.Addr().String())
if err != nil {
Expand Down

0 comments on commit 9647186

Please sign in to comment.