summaryrefslogtreecommitdiff
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
commitd638ddfbefdaad4243b2f8b7f69b6ed09568818c (patch)
tree5f5175aff23d84e699134c9c20b7f691b5fcc45f /src/run.bash
parent553bc2fd55434f7379d489b4af5fb90e2c6e9f4c (diff)
downloadgo-d638ddfbefdaad4243b2f8b7f69b6ed09568818c.tar.gz
build: fix the build with USE_GO_TOOL=false
R=golang-dev, r, rsc CC=golang-dev http://codereview.appspot.com/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 90e8797c0..7d8b9bce0 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