]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/link: skip TestRuntimeTypeAttrInternal on windows/arm
authorJordan Rhee <jordanrh@microsoft.com>
Thu, 13 Dec 2018 01:38:17 +0000 (17:38 -0800)
committerIan Lance Taylor <iant@golang.org>
Thu, 13 Dec 2018 05:49:36 +0000 (05:49 +0000)
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>
src/cmd/link/internal/ld/dwarf_test.go

index 4768a11c259c7ad5c07d8ab67912d16be603cf0d..7bbe2b710cca21db4c2bb590c0946c63f0b7946e 100644 (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")
 }