]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/tls: skip bogo suite on windows builders
authorRoland Shoemaker <roland@golang.org>
Wed, 24 Apr 2024 17:04:01 +0000 (10:04 -0700)
committerGopher Robot <gobot@golang.org>
Wed, 24 Apr 2024 18:15:23 +0000 (18:15 +0000)
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>
src/crypto/tls/bogo_shim_test.go

index f12733a274af63c3dbf2ca095153e65276125136..731fcd6d95562c1a038999ab7d907a955d9206bf 100644 (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 {