]> Cypherpunks repositories - gostls13.git/commitdiff
build: disable cgo test on openbsd
authorRuss Cox <rsc@golang.org>
Fri, 1 Mar 2013 17:13:42 +0000 (12:13 -0500)
committerRuss Cox <rsc@golang.org>
Fri, 1 Mar 2013 17:13:42 +0000 (12:13 -0500)
Update #4878.

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

src/run.bash

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