]> Cypherpunks.ru repositories - gostls13.git/blobdiff - misc/cgo/test/pkg_test.go
all: disable tests that fail on Alpine
[gostls13.git] / misc / cgo / test / pkg_test.go
index 14013a4cd962b621f6e5a9a4cade19c0504edcb6..cbc80eee7739f431342cf8750c48caa703cea708 100644 (file)
@@ -34,6 +34,10 @@ func TestCrossPackageTests(t *testing.T) {
                case "arm64":
                        t.Skip("Can't exec cmd/go subprocess on iOS.")
                }
+       case "linux":
+               if _, err := os.Stat("/etc/alpine-release"); err == nil {
+                       t.Skip("skipping failing test on alpine - go.dev/issue/39857")
+               }
        }
 
        GOPATH, err := os.MkdirTemp("", "cgotest")