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 <roland@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Michael Matloob <matloob@golang.org>
This commit is contained in:
Roland Shoemaker 2024-04-24 10:04:01 -07:00 committed by Gopher Robot
parent d037bba19b
commit e689118852

View file

@ -14,6 +14,7 @@ import (
"os"
"os/exec"
"path/filepath"
"runtime"
"testing"
)
@ -233,6 +234,10 @@ func TestBogoSuite(t *testing.T) {
t.Skip("skipping in short mode")
}
if testenv.Builder() != "" && runtime.GOOS == "windows" {
t.Skip("#66913: windows network connections are flakey on builders")
}
const boringsslModVer = "v0.0.0-20240412155355-1c6e10495e4f"
output, err := exec.Command("go", "mod", "download", "-json", "github.com/google/boringssl@"+boringsslModVer).CombinedOutput()
if err != nil {