summaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2013-03-01 12:13:42 -0500
committerRuss Cox <rsc@golang.org>2013-03-01 12:13:42 -0500
commitf4b442fa192cf07f75ff87cae6b500717e70a99c (patch)
treed56f744d4d8ec8301412ef949171bc2a2d47e7a9 /src/run.bash
parent714c57c5e427e9ca1a02537cab8355001dabe498 (diff)
downloadgo-f4b442fa192cf07f75ff87cae6b500717e70a99c.tar.gz
build: disable cgo test on openbsd
Update issue 4878. R=golang-dev CC=golang-dev https://codereview.appspot.com/7450048
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/run.bash b/src/run.bash
index a2abc6797..a026b459c 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 $?