From a5b2623dab33d4e54b9995d0f0cfd4b95b439683 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 15 Mar 2013 12:39:14 -0400 Subject: [PATCH] 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 --- src/run.bash | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.50.0