Commit a5b2623d authored by Russ Cox's avatar Russ Cox

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
parent ee3c8848
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment