mirror of
https://github.com/golang/go.git
synced 2025-12-08 06:10:04 +00:00
all: do not test internal linking on windows/arm64
(It doesn't work and isn't used by default.) Change-Id: I90118d889bd963471f0915d8183502b55bd9dbf2 Reviewed-on: https://go-review.googlesource.com/c/go/+/312045 Trust: Russ Cox <rsc@golang.org> Reviewed-by: Cherry Zhang <cherryyz@google.com>
This commit is contained in:
parent
8e368708c5
commit
9cc3469106
3 changed files with 11 additions and 1 deletions
|
|
@ -177,7 +177,8 @@ func TestIssue33979(t *testing.T) {
|
|||
case "mips", "mipsle", "mips64", "mips64le":
|
||||
t.Skipf("Skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
|
||||
}
|
||||
if runtime.GOOS == "aix" {
|
||||
if runtime.GOOS == "aix" ||
|
||||
runtime.GOOS == "windows" && runtime.GOARCH == "arm64" {
|
||||
t.Skipf("Skipping on %s/%s", runtime.GOOS, runtime.GOARCH)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue