2009-11-14 16:29:09 -07:00
|
|
|
#!/usr/bin/env bash
|
2008-10-08 10:46:54 -06:00
|
|
|
# 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
|
2010-03-31 20:48:33 -06:00
|
|
|
. ./env.bash
|
2008-10-08 10:46:54 -06:00
|
|
|
|
2010-08-18 08:22:57 -06:00
|
|
|
unset MAKEFLAGS # single-threaded make
|
2010-03-31 20:48:33 -06:00
|
|
|
unset CDPATH # in case user has it set
|
2009-12-11 16:14:09 -07:00
|
|
|
|
2009-11-10 00:11:36 -07:00
|
|
|
# no core files, please
|
|
|
|
ulimit -c 0
|
|
|
|
|
2010-03-31 20:48:33 -06:00
|
|
|
# allow make.bash to avoid double-build of everything
|
|
|
|
rebuild=true
|
|
|
|
if [ "$1" = "--no-rebuild" ]; then
|
|
|
|
rebuild=false
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
|
2008-10-08 10:46:54 -06:00
|
|
|
xcd() {
|
2008-10-24 21:14:28 -06:00
|
|
|
echo
|
2008-10-08 10:46:54 -06:00
|
|
|
echo --- cd $1
|
2009-12-11 16:14:09 -07:00
|
|
|
builtin cd "$GOROOT"/src/$1
|
2008-10-08 10:46:54 -06:00
|
|
|
}
|
|
|
|
|
2008-11-20 11:54:11 -07:00
|
|
|
maketest() {
|
|
|
|
for i
|
|
|
|
do
|
|
|
|
(
|
|
|
|
xcd $i
|
2010-03-31 20:48:33 -06:00
|
|
|
if $rebuild; then
|
|
|
|
"$GOBIN"/gomake clean
|
|
|
|
time "$GOBIN"/gomake
|
|
|
|
"$GOBIN"/gomake install
|
|
|
|
fi
|
2009-12-11 16:14:09 -07:00
|
|
|
"$GOBIN"/gomake test
|
2008-11-20 11:54:11 -07:00
|
|
|
) || exit $?
|
|
|
|
done
|
|
|
|
}
|
2008-11-17 13:34:03 -07:00
|
|
|
|
2008-11-20 11:54:11 -07:00
|
|
|
maketest \
|
2009-06-09 10:53:44 -06:00
|
|
|
pkg \
|
2008-11-20 11:54:11 -07:00
|
|
|
|
|
|
|
# all of these are subtly different
|
|
|
|
# from what maketest does.
|
2008-10-23 18:13:34 -06:00
|
|
|
|
2009-06-09 10:53:44 -06:00
|
|
|
(xcd pkg/sync;
|
2010-03-31 20:48:33 -06:00
|
|
|
if $rebuild; then
|
|
|
|
"$GOBIN"/gomake clean;
|
|
|
|
time "$GOBIN"/gomake
|
|
|
|
fi
|
2009-12-11 16:14:09 -07:00
|
|
|
GOMAXPROCS=10 "$GOBIN"/gomake test
|
2008-12-04 13:51:36 -07:00
|
|
|
) || exit $?
|
|
|
|
|
2009-06-16 13:03:32 -06:00
|
|
|
(xcd cmd/gofmt
|
2010-03-31 20:48:33 -06:00
|
|
|
if $rebuild; then
|
|
|
|
"$GOBIN"/gomake clean;
|
|
|
|
time "$GOBIN"/gomake
|
|
|
|
fi
|
2009-12-11 16:14:09 -07:00
|
|
|
time "$GOBIN"/gomake smoketest
|
2009-03-03 17:09:40 -07:00
|
|
|
) || exit $?
|
2008-10-14 23:16:45 -06:00
|
|
|
|
2009-07-13 11:26:58 -06:00
|
|
|
(xcd cmd/ebnflint
|
2010-03-31 20:48:33 -06:00
|
|
|
if $rebuild; then
|
|
|
|
"$GOBIN"/gomake clean;
|
|
|
|
time "$GOBIN"/gomake
|
|
|
|
fi
|
2009-12-11 16:14:09 -07:00
|
|
|
time "$GOBIN"/gomake test
|
2009-07-13 11:26:58 -06:00
|
|
|
) || exit $?
|
|
|
|
|
2009-10-03 12:33:51 -06:00
|
|
|
(xcd ../misc/cgo/stdio
|
2009-12-11 16:14:09 -07:00
|
|
|
"$GOBIN"/gomake clean
|
2009-10-03 16:02:11 -06:00
|
|
|
./test.bash
|
2009-10-03 12:33:51 -06:00
|
|
|
) || exit $?
|
|
|
|
|
2009-10-14 19:10:43 -06:00
|
|
|
(xcd pkg/exp/ogle
|
2009-12-11 16:14:09 -07:00
|
|
|
"$GOBIN"/gomake clean
|
|
|
|
time "$GOBIN"/gomake ogle
|
2009-09-25 12:36:27 -06:00
|
|
|
) || exit $?
|
|
|
|
|
2009-01-06 16:49:27 -07:00
|
|
|
(xcd ../doc/progs
|
2009-01-06 18:31:24 -07:00
|
|
|
time ./run
|
2009-01-06 16:49:27 -07:00
|
|
|
) || exit $?
|
|
|
|
|
2009-08-09 15:31:05 -06:00
|
|
|
(xcd ../test/bench
|
|
|
|
./timing.sh -test
|
|
|
|
) || exit $?
|
|
|
|
|
2008-10-08 10:46:54 -06:00
|
|
|
(xcd ../test
|
|
|
|
./run
|
2008-10-29 16:23:29 -06:00
|
|
|
) || exit $?
|
2008-10-08 10:46:54 -06:00
|
|
|
|