Skip to content

Commit 36f456c

Browse files
committed
misc/cgo: skip testso on ppc64
This test requires external linking, but we don't yet implement external linking on ppc64 (tracked in issue #8912). Disable the test on ppc64 until external linking is implemented. This makes all.bash pass on ppc64le. Change-Id: I741498d4d9321607e7a65792a33faf8187bd18e4 Reviewed-on: https://go-review.googlesource.com/2908 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent c6ddca2 commit 36f456c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

misc/cgo/testso/test.bash

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55

66
set -e
77

8+
if [ "$(uname -m)" == ppc64 -o "$(uname -m)" == ppc64le ]; then
9+
# External linking not implemented on ppc64
10+
echo "skipping test on ppc64 (issue #8912)"
11+
exit
12+
fi
13+
814
args=
915
dyld_envvar=LD_LIBRARY_PATH
1016
ext=so

0 commit comments

Comments
 (0)