Skip to content

Commit e689118

Browse files
rolandshoemakergopherbot
authored andcommitted
crypto/tls: skip bogo suite on windows builders
Updates #66913 Change-Id: Ie6bb262ee95593d23a93ef06656a561a7b1006ba Reviewed-on: https://go-review.googlesource.com/c/go/+/581515 Auto-Submit: Roland Shoemaker <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Matloob <[email protected]>
1 parent d037bba commit e689118

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/crypto/tls/bogo_shim_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ import (
1414
"os"
1515
"os/exec"
1616
"path/filepath"
17+
"runtime"
1718
"testing"
1819
)
1920

@@ -233,6 +234,10 @@ func TestBogoSuite(t *testing.T) {
233234
t.Skip("skipping in short mode")
234235
}
235236

237+
if testenv.Builder() != "" && runtime.GOOS == "windows" {
238+
t.Skip("#66913: windows network connections are flakey on builders")
239+
}
240+
236241
const boringsslModVer = "v0.0.0-20240412155355-1c6e10495e4f"
237242
output, err := exec.Command("go", "mod", "download", "-json", "github.com/google/boringssl@"+boringsslModVer).CombinedOutput()
238243
if err != nil {

0 commit comments

Comments
 (0)