From: Cherry Zhang Date: Thu, 28 Apr 2016 02:18:48 +0000 (-0400) Subject: cmd/go: enable TestNodeReading on linux/mips64x X-Git-Tag: go1.7beta1~343 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3b4180c67425ead0631a8c86eb164f9eaa6c922d;p=gostls13.git cmd/go: enable TestNodeReading on linux/mips64x external linking is now supported. Change-Id: I3f552f5f09391205fced509fe8a5a38297ea8153 Reviewed-on: https://go-review.googlesource.com/19810 Reviewed-by: Minux Ma --- diff --git a/src/cmd/go/note_test.go b/src/cmd/go/note_test.go index 84bc2a1872..2ee013faf3 100644 --- a/src/cmd/go/note_test.go +++ b/src/cmd/go/note_test.go @@ -47,8 +47,6 @@ func testNoteReading(t *testing.T) { t.Skipf("skipping - no cgo, so assuming external linking not available") case runtime.GOOS == "linux" && (runtime.GOARCH == "ppc64le" || runtime.GOARCH == "ppc64"): t.Skipf("skipping - external linking not supported, golang.org/issue/11184") - case runtime.GOOS == "linux" && (runtime.GOARCH == "mips64le" || runtime.GOARCH == "mips64"): - t.Skipf("skipping - external linking not supported, golang.org/issue/12560") case runtime.GOOS == "openbsd" && runtime.GOARCH == "arm": t.Skipf("skipping - external linking not supported, golang.org/issue/10619") case runtime.GOOS == "plan9":