aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/tls/bogo_shim_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/tls/bogo_shim_test.go')
-rw-r--r--src/crypto/tls/bogo_shim_test.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/crypto/tls/bogo_shim_test.go b/src/crypto/tls/bogo_shim_test.go
index f12733a274..731fcd6d95 100644
--- a/src/crypto/tls/bogo_shim_test.go
+++ b/src/crypto/tls/bogo_shim_test.go
@@ -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 {