1
0
mirror of https://github.com/golang/go synced 2024-11-24 01:10:12 -07:00

cmd/go: really skip TestNoteReading on linux/ppc64le

Change-Id: Iaeba7c55bbb9e11ac30f3b61369aa597acc30190
Reviewed-on: https://go-review.googlesource.com/13691
Reviewed-by: Russ Cox <rsc@golang.org>
This commit is contained in:
Russ Cox 2015-08-18 11:40:59 -04:00
parent 92c984e064
commit 5acde2d5aa

View File

@ -25,7 +25,7 @@ func TestNoteReading(t *testing.T) {
} }
if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" { if runtime.GOOS == "linux" && runtime.GOARCH == "ppc64le" {
t.Logf("skipping - golang.org/issue/11184") t.Skipf("skipping - golang.org/issue/11184")
} }
switch runtime.GOOS { switch runtime.GOOS {