aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2020-01-30 10:59:11 +0100
committerTobias Klauser <tobias.klauser@gmail.com>2020-02-24 08:30:59 +0000
commit87c0db9916f992d5e869450deccc1185f642bfc9 (patch)
treeca36f700ee7aaff421ee2aa65a2f648c0d7e189d /misc
parent151ccd4bdb06d77e89f00b8172b70cfb2f49ca2b (diff)
downloadgo-87c0db9916f992d5e869450deccc1185f642bfc9.tar.gz
go-87c0db9916f992d5e869450deccc1185f642bfc9.zip
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 <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'misc')
-rw-r--r--misc/cgo/testso/so_test.go2
-rw-r--r--misc/cgo/testsovar/so_test.go2
2 files changed, 2 insertions, 2 deletions
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" {