1
0
mirror of https://github.com/golang/go synced 2024-10-04 05:31:21 -06:00
go/src/run.bash
Devon H. O'Dell 857d4cf1a9 Remove GOBIN in PATH dependency; don't assume cwd is $GOROOT/src
This change removes the necessity to have GOBIN in $PATH,
and also doesn't assume that the build is being run from
$GOROOT/src. This is a minimal set of necessary changes
to get Go to build happily from the FreeBSD ports
collection.

R=rsc
CC=golang-dev
https://golang.org/cl/171044
2009-12-11 15:14:09 -08:00

78 lines
1.1 KiB
Bash
Executable File

#!/usr/bin/env bash
# Copyright 2009 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
set -e
GOBIN="${GOBIN:-$HOME/bin}"
# no core files, please
ulimit -c 0
xcd() {
echo
echo --- cd $1
builtin cd "$GOROOT"/src/$1
}
maketest() {
for i
do
(
xcd $i
"$GOBIN"/gomake clean
time "$GOBIN"/gomake
"$GOBIN"/gomake install
"$GOBIN"/gomake test
) || exit $?
done
}
maketest \
pkg \
# all of these are subtly different
# from what maketest does.
(xcd pkg/sync;
"$GOBIN"/gomake clean;
time "$GOBIN"/gomake
GOMAXPROCS=10 "$GOBIN"/gomake test
) || exit $?
(xcd cmd/gofmt
"$GOBIN"/gomake clean
time "$GOBIN"/gomake
time "$GOBIN"/gomake smoketest
) || exit $?
(xcd cmd/ebnflint
"$GOBIN"/gomake clean
time "$GOBIN"/gomake
time "$GOBIN"/gomake test
) || exit $?
(xcd ../misc/cgo/stdio
"$GOBIN"/gomake clean
./test.bash
) || exit $?
(xcd pkg/exp/ogle
"$GOBIN"/gomake clean
time "$GOBIN"/gomake ogle
) || exit $?
(xcd ../doc/progs
time ./run
) || exit $?
(xcd ../test/bench
./timing.sh -test
) || exit $?
(xcd ../test
./run
) || exit $?