From: Russ Cox Date: Fri, 15 Mar 2013 16:39:14 +0000 (-0400) Subject: build: skip benchmarks on OpenBSD X-Git-Tag: go1.1rc2~484 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a5b2623dab33d4e54b9995d0f0cfd4b95b439683;p=gostls13.git build: skip benchmarks on OpenBSD They are making the build die. I want to be able to see that everything else is okay. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/7546049 --- diff --git a/src/run.bash b/src/run.bash index f53236ae73..6c96d5ddd2 100755 --- a/src/run.bash +++ b/src/run.bash @@ -116,9 +116,12 @@ go build ../misc/dashboard/builder ../misc/goplay ./timing.sh -test ) || exit $? +[ "$GOOS" == openbsd ] || # golang.org/issue/5057 +( echo echo '#' ../test/bench/go1 go test ../test/bench/go1 +) || exit $? (xcd ../test unset GOMAXPROCS