1
0
mirror of https://github.com/golang/go synced 2024-11-22 14:04:48 -07:00

misc/cgo: enable testso and testsovar on mips64x

External linking on mips64 was implemented in CL 19803 and CL 19809

Updates #12560
Updates #14126

Change-Id: I2cc127d71173aade56ad181bdd947355a76b3e46
Reviewed-on: https://go-review.googlesource.com/c/go/+/217017
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Cherry Zhang <cherryyz@google.com>
This commit is contained in:
Tobias Klauser 2020-01-30 00:25:19 +01:00 committed by Tobias Klauser
parent 6e5652bebe
commit 576cc530c9
2 changed files with 0 additions and 4 deletions

View File

@ -28,8 +28,6 @@ func requireTestSOSupported(t *testing.T) {
if runtime.GOOS == "linux" {
t.Skip("External linking not implemented on aix/ppc64 (issue #8912).")
}
case "mips64le", "mips64":
t.Skip("External linking not implemented on mips64.")
}
if runtime.GOOS == "android" {
t.Skip("No exec facility on Android.")

View File

@ -28,8 +28,6 @@ func requireTestSOSupported(t *testing.T) {
if runtime.GOOS == "linux" {
t.Skip("External linking not implemented on aix/ppc64 (issue #8912).")
}
case "mips64le", "mips64":
t.Skip("External linking not implemented on mips64.")
}
if runtime.GOOS == "android" {
t.Skip("No exec facility on Android.")