From e02168f6593db7f807a475b2bd4af0f3d7583e4d Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 1 Mar 2013 15:01:26 -0500 Subject: [PATCH] build: skip cgo test on arm Update #4961. R=golang-dev CC=golang-dev https://golang.org/cl/7451044 --- src/run.bash | 1 + 1 file changed, 1 insertion(+) 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 $? -- 2.48.1