1
0
mirror of https://github.com/golang/go synced 2024-11-06 15:26:13 -07:00

cmd/link: skip TestRuntimeTypeAttrInternal on windows/arm

Updates #26148

Change-Id: Ide1fe821cc061a08488df9d40878131f37f894c9
Reviewed-on: https://go-review.googlesource.com/c/153844
Run-TryBot: Ian Lance Taylor <iant@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Jordan Rhee 2018-12-12 17:38:17 -08:00 committed by Ian Lance Taylor
parent cc5fb5d93d
commit a728b0ba7c

View File

@ -870,6 +870,10 @@ func TestRuntimeTypeAttrInternal(t *testing.T) {
t.Skip("skipping on plan9; no DWARF symbol table in executables")
}
if runtime.GOOS == "windows" && runtime.GOARCH == "arm" {
t.Skip("skipping on windows/arm; test is incompatible with relocatable binaries")
}
testRuntimeTypeAttr(t, "-ldflags=-linkmode=internal")
}