aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/nm/nm_cgo_test.go
diff options
context:
space:
mode:
authorClément Chigot <clement.chigot@atos.net>2019-02-21 10:50:29 +0100
committerIan Lance Taylor <iant@golang.org>2019-03-20 13:50:44 +0000
commit1b5b08d10a372ef3e3a21442fade2d2b4e3be343 (patch)
treea3b35fc6ab400838e575805b2c57b731964f1f74 /src/cmd/nm/nm_cgo_test.go
parentb41eef244319df4f7431728ac7671cdbe8449778 (diff)
downloadgo-1b5b08d10a372ef3e3a21442fade2d2b4e3be343.tar.xz
cmd/nm: fix cgo tests for aix/ppc64
This commit handles AIX cgo in cmd/nm tests. Change-Id: I6753a0102e4f2c4c7bd4d7c999f62a0cb3d2183c Reviewed-on: https://go-review.googlesource.com/c/go/+/164017 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src/cmd/nm/nm_cgo_test.go')
-rw-r--r--src/cmd/nm/nm_cgo_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cmd/nm/nm_cgo_test.go b/src/cmd/nm/nm_cgo_test.go
index 1dfdf7f21a..143a297e05 100644
--- a/src/cmd/nm/nm_cgo_test.go
+++ b/src/cmd/nm/nm_cgo_test.go
@@ -20,6 +20,8 @@ func canInternalLink() bool {
case "arm64", "mips64", "mips64le", "mips", "mipsle", "ppc64", "ppc64le":
return false
}
+ case "aix":
+ return false
}
return true
}