diff options
| author | Rob Pike <r@golang.org> | 2012-01-30 14:46:31 -0800 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2012-01-30 14:46:31 -0800 |
| commit | 91cb3489abcb0ec5cd36595249586d67729230c4 (patch) | |
| tree | ed9774de37515d70f68e2f2ec3c89bad18d2373d /src/run.bash | |
| parent | be7a04944ea9eeb7ffd5458d26a83c1693df657c (diff) | |
| download | go-91cb3489abcb0ec5cd36595249586d67729230c4.tar.xz | |
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
Diffstat (limited to 'src/run.bash')
| -rwxr-xr-x | src/run.bash | 4 |
1 files changed, 2 insertions, 2 deletions
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 ] || |
