summaryrefslogtreecommitdiff
path: root/misc/cgo/test/pkg_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/test/pkg_test.go')
-rw-r--r--misc/cgo/test/pkg_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/misc/cgo/test/pkg_test.go b/misc/cgo/test/pkg_test.go
index 14013a4cd9..cbc80eee77 100644
--- a/misc/cgo/test/pkg_test.go
+++ b/misc/cgo/test/pkg_test.go
@@ -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")