Skip to content

Commit 6f45e37

Browse files
committed
cmd/dist: disable internal linking tests on Alpine
Updates #18243 Change-Id: I1fe0af65dbd52c3e8e0a245e4cbbdfca100971b4 Reviewed-on: https://go-review.googlesource.com/41759 Run-TryBot: Brad Fitzpatrick <[email protected]> TryBot-Result: Gobot Gobot <[email protected]> Reviewed-by: Josh Bleecher Snyder <[email protected]>
1 parent 0d3143e commit 6f45e37

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/cmd/dist/test.go

+4
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,10 @@ func (t *tester) internalLink() bool {
750750
if t.goarch == "arm64" || t.goarch == "mips64" || t.goarch == "mips64le" || t.goarch == "mips" || t.goarch == "mipsle" {
751751
return false
752752
}
753+
if isAlpineLinux() {
754+
// Issue 18243.
755+
return false
756+
}
753757
return true
754758
}
755759

0 commit comments

Comments
 (0)