aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2013-03-15 12:39:14 -0400
committerRuss Cox <rsc@golang.org>2013-03-15 12:39:14 -0400
commita5b2623dab33d4e54b9995d0f0cfd4b95b439683 (patch)
treefa91257fa7a82f650a80359fff559df9b47a6b8c /src/run.bash
parentee3c88482ba232a34e4b20c8474fdee64a37ca36 (diff)
downloadgo-a5b2623dab33d4e54b9995d0f0cfd4b95b439683.tar.xz
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
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash3
1 files changed, 3 insertions, 0 deletions
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