From 91cb3489abcb0ec5cd36595249586d67729230c4 Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Mon, 30 Jan 2012 14:46:31 -0800 Subject: 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 #284. R=rsc CC=golang-dev https://golang.org/cl/5598049 --- src/run.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/run.bash') diff --git a/src/run.bash b/src/run.bash index 8cc04a71fc..61998ac5d9 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 ] || -- cgit v1.3-5-g9baa