From: Russ Cox Date: Fri, 1 Mar 2013 20:01:26 +0000 (-0500) Subject: build: skip cgo test on arm X-Git-Tag: go1.1rc2~734 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=e02168f6593db7f807a475b2bd4af0f3d7583e4d;p=gostls13.git build: skip cgo test on arm Update #4961. R=golang-dev CC=golang-dev https://golang.org/cl/7451044 --- 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 $?