aboutsummaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2011-12-20 15:30:36 -0800
committerBrad Fitzpatrick <bradfitz@golang.org>2011-12-20 15:30:36 -0800
commit0735e06cfd9b7e132589f555eca3ab72f26d6e91 (patch)
treeb3e3e0fec2466e2a9aad3df2a4893d61beefccf2 /src/run.bash
parentd13ce8115d650e598f5fd35975f8188f493c2f96 (diff)
downloadgo-0735e06cfd9b7e132589f555eca3ab72f26d6e91.tar.xz
build: fix the build with USE_GO_TOOL=false
R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5502051
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash2
1 files changed, 1 insertions, 1 deletions
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