mirror of
https://github.com/golang/go
synced 2024-11-26 04:07:59 -07:00
cmd/link/internal/ld: fix GOARCH in TestAbstractOriginSanityIssue25459
There is no x86 GOARCH, this should likely be 386. Change-Id: I16f1cf5edb0cce156d42ecb621b2ae481c8f1789 Reviewed-on: https://go-review.googlesource.com/c/go/+/308995 Trust: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Than McIntosh <thanm@google.com>
This commit is contained in:
parent
d26fc68aa1
commit
e1f4feb3d6
@ -868,8 +868,8 @@ func TestAbstractOriginSanityIssue25459(t *testing.T) {
|
||||
if runtime.GOOS == "solaris" || runtime.GOOS == "illumos" || runtime.GOOS == "darwin" {
|
||||
t.Skip("skipping on solaris, illumos, and darwin, pending resolution of issue #23168")
|
||||
}
|
||||
if runtime.GOARCH != "amd64" && runtime.GOARCH != "x86" {
|
||||
t.Skip("skipping on not-amd64 not-x86; location lists not supported")
|
||||
if runtime.GOARCH != "amd64" && runtime.GOARCH != "386" {
|
||||
t.Skip("skipping on not-amd64 not-386; location lists not supported")
|
||||
}
|
||||
|
||||
if wd, err := os.Getwd(); err == nil {
|
||||
|
Loading…
Reference in New Issue
Block a user