From: Tobias Klauser Date: Thu, 30 Jan 2020 09:59:11 +0000 (+0100) Subject: misc/cgo: correct GOOS in skip message X-Git-Tag: go1.15beta1~1117 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=87c0db9916f992d5e869450deccc1185f642bfc9;p=gostls13.git misc/cgo: correct GOOS in skip message Tests are skipped on linux/ppc64, not aix/ppc64. Change-Id: I6b91b89f24d76b0f9be3eaf816f81ad4246e418f Reviewed-on: https://go-review.googlesource.com/c/go/+/220423 Run-TryBot: Tobias Klauser TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- diff --git a/misc/cgo/testso/so_test.go b/misc/cgo/testso/so_test.go index 73819b20c9..f94017025c 100644 --- a/misc/cgo/testso/so_test.go +++ b/misc/cgo/testso/so_test.go @@ -26,7 +26,7 @@ func requireTestSOSupported(t *testing.T) { } case "ppc64": if runtime.GOOS == "linux" { - t.Skip("External linking not implemented on aix/ppc64 (issue #8912).") + t.Skip("External linking not implemented on linux/ppc64 (issue #8912).") } } if runtime.GOOS == "android" { diff --git a/misc/cgo/testsovar/so_test.go b/misc/cgo/testsovar/so_test.go index 73819b20c9..f94017025c 100644 --- a/misc/cgo/testsovar/so_test.go +++ b/misc/cgo/testsovar/so_test.go @@ -26,7 +26,7 @@ func requireTestSOSupported(t *testing.T) { } case "ppc64": if runtime.GOOS == "linux" { - t.Skip("External linking not implemented on aix/ppc64 (issue #8912).") + t.Skip("External linking not implemented on linux/ppc64 (issue #8912).") } } if runtime.GOOS == "android" {