summaryrefslogtreecommitdiff
path: root/src/run.bash
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2012-01-30 14:46:31 -0800
committerRob Pike <r@golang.org>2012-01-30 14:46:31 -0800
commitaf481703a11825955bd7e456ec79c9414991163f (patch)
tree2416f0f7dbe938077f720e41136be395f1c260a8 /src/run.bash
parent7b20a90437eaeb9e22bb53d15f7343e1868bda13 (diff)
downloadgo-af481703a11825955bd7e456ec79c9414991163f.tar.gz
go: move compilers into the go-tool directory
Also delete gotest, since it's messy to fix and slated for deletion anyway. A couple of things outside src can't be tested any more. "go test" will be fixed and these tests will be re-enabled. They're noisy for now. Fixes issue 284. R=rsc CC=golang-dev http://codereview.appspot.com/5598049
Diffstat (limited to 'src/run.bash')
-rwxr-xr-xsrc/run.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/run.bash b/src/run.bash
index 8cc04a71f..61998ac5d 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;
- gotest -short -cpu=1,2,4
+ go test -short -cpu=1,2,4
) || exit $?
fi
@@ -99,7 +99,7 @@ gomake clean
[ "$CGO_ENABLED" != 1 ] ||
(xcd ../misc/cgo/test
gomake clean
-gotest
+make test
) || exit $?
[ "$CGO_ENABLED" != 1 ] ||