From: Brad Fitzpatrick Date: Tue, 20 Dec 2011 23:30:36 +0000 (-0800) Subject: build: fix the build with USE_GO_TOOL=false X-Git-Tag: weekly.2011-12-22~78 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=0735e06cfd9b7e132589f555eca3ab72f26d6e91;p=gostls13.git build: fix the build with USE_GO_TOOL=false R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5502051 --- diff --git a/src/run.bash b/src/run.bash index 90e8797c09..7d8b9bce06 100755 --- a/src/run.bash +++ b/src/run.bash @@ -59,7 +59,7 @@ if $USE_GO_TOOL; then go test runtime -short -cpu=1,2,4 else (xcd pkg/runtime; - go test -short -cpu=1,2,4 + gotest -short -cpu=1,2,4 ) || exit $? fi