]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/link: skip TestRuntimeTypeAttr to fix build
authorJosh Bleecher Snyder <josharian@gmail.com>
Sat, 21 Apr 2018 00:44:55 +0000 (17:44 -0700)
committerHeschi Kreinick <heschi@google.com>
Sat, 21 Apr 2018 20:20:37 +0000 (20:20 +0000)
Updates #24983

Change-Id: I417453364346106d4ff4c99549175cef7df724e3
Reviewed-on: https://go-review.googlesource.com/108575
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Heschi Kreinick <heschi@google.com>
src/cmd/link/internal/ld/dwarf_test.go

index 90369e9d294976102c15813eb58e387b6354f470..5475edbf629175d0c4358eb3d6b9d70abc08ce50 100644 (file)
@@ -813,6 +813,10 @@ func TestAbstractOriginSanityWithLocationLists(t *testing.T) {
 func TestRuntimeTypeAttr(t *testing.T) {
        testenv.MustHaveGoBuild(t)
 
+       if runtime.GOOS == "solaris" || runtime.GOARCH == "ppc64" {
+               t.Skip("TODO(heschi): fix or make skip permanent (golang.org/issue/24983)")
+       }
+
        if runtime.GOOS == "plan9" {
                t.Skip("skipping on plan9; no DWARF symbol table in executables")
        }