]> Cypherpunks repositories - gostls13.git/commitdiff
build: fix the build with USE_GO_TOOL=false
authorBrad Fitzpatrick <bradfitz@golang.org>
Tue, 20 Dec 2011 23:30:36 +0000 (15:30 -0800)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 20 Dec 2011 23:30:36 +0000 (15:30 -0800)
R=golang-dev, r, rsc
CC=golang-dev
https://golang.org/cl/5502051

src/run.bash

index 90e8797c0972635676b1abab286f7024381961a2..7d8b9bce060b450ae3fe792a5626f0875663e590 100755 (executable)
@@ -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