From f5ceeb94a8054dda97d6331ec689037b4aff6a3a Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 1 Mar 2013 12:13:42 -0500 Subject: [PATCH] build: disable cgo test on openbsd Update #4878. R=golang-dev CC=golang-dev https://golang.org/cl/7450048 --- src/run.bash | 1 + 1 file changed, 1 insertion(+) diff --git a/src/run.bash b/src/run.bash index a2abc6797b..a026b459ce 100755 --- a/src/run.bash +++ b/src/run.bash @@ -74,6 +74,7 @@ go run $GOROOT/test/run.go - . ) || exit $? [ "$CGO_ENABLED" != 1 ] || +[ "$GOHOSTOS" == openbsd ] || # issue 4878 (xcd ../misc/cgo/test go test ) || exit $? -- 2.48.1