Commit 1153737e authored by Yao Zhang's avatar Yao Zhang Committed by Brad Fitzpatrick

cmd/go: skip part of TestNoteReading for mips64{,le}

Because external linking is not supported for now.

Change-Id: Icdd8f3cb3bfb781a990e529fce9129d91e98a9ec
Reviewed-on: https://go-review.googlesource.com/14457Reviewed-by: 's avatarBrad Fitzpatrick <bradfitz@golang.org>
parent d8384e9a
......@@ -28,6 +28,10 @@ func TestNoteReading(t *testing.T) {
t.Skipf("skipping - golang.org/issue/11184")
}
if runtime.GOOS == "linux" && (runtime.GOARCH == "mips64le" || runtime.GOARCH == "mips64") {
t.Skipf("skipping - external linking not supported, golang.org/issue/12560")
}
switch runtime.GOOS {
case "plan9":
// no external linking
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment