]> Cypherpunks repositories - gostls13.git/commitdiff
build: skip benchmarks on OpenBSD
authorRuss Cox <rsc@golang.org>
Fri, 15 Mar 2013 16:39:14 +0000 (12:39 -0400)
committerRuss Cox <rsc@golang.org>
Fri, 15 Mar 2013 16:39:14 +0000 (12:39 -0400)
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

index f53236ae731d8f5fd851643abc8366e380bbc4f8..6c96d5ddd2c84ae87f465b7e6dd9ae9d8282c106 100755 (executable)
@@ -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