]> Cypherpunks repositories - gostls13.git/commitdiff
build: skip cgo test on arm
authorRuss Cox <rsc@golang.org>
Fri, 1 Mar 2013 20:01:26 +0000 (15:01 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 1 Mar 2013 20:01:26 +0000 (15:01 -0500)
Update #4961.

R=golang-dev
CC=golang-dev
https://golang.org/cl/7451044

src/run.bash

index a026b459ce3c36cafd7024244e16d39a1375dfd9..c5ed919a3b06d35aa3e096d8f23a8f77e6bf0df3 100755 (executable)
@@ -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 $?