aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2013-03-01 15:01:26 -0500
committerRuss Cox <rsc@golang.org>2013-03-01 15:01:26 -0500
commite02168f6593db7f807a475b2bd4af0f3d7583e4d (patch)
tree36bb5e97f5e20be9e31f4ace46d183a7e7034ebb /src/run.bash
parent3611553c3b08d615a34581274b553da6c94f193c (diff)
downloadgo-e02168f6593db7f807a475b2bd4af0f3d7583e4d.tar.xz
build: skip cgo test on arm
Update #4961. R=golang-dev CC=golang-dev https://golang.org/cl/7451044
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/run.bash b/src/run.bash
index a026b459ce..c5ed919a3b 100755
--- a/src/run.bash
+++ b/src/run.bash
@@ -75,6 +75,7 @@ go run $GOROOT/test/run.go - .
[ "$CGO_ENABLED" != 1 ] ||
[ "$GOHOSTOS" == openbsd ] || # issue 4878
+[ "$GOARCH" == arm ] || # issue 4961
(xcd ../misc/cgo/test
go test
) || exit $?