1
0
mirror of https://github.com/golang/go synced 2024-10-03 21:11:22 -06:00
go/src/run.bash
Russ Cox 168777d4af fix build
TBR=r
OCL=35308
CL=35308
2009-10-03 15:02:11 -07:00

75 lines
913 B
Bash
Executable File

#!/bin/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
xcd() {
echo
echo --- cd $1
builtin cd $1
}
maketest() {
for i
do
(
xcd $i
make clean
time make
make install
make test
) || exit $?
done
}
maketest \
pkg \
../usr/austin/eval \
# all of these are subtly different
# from what maketest does.
(xcd pkg/sync;
make clean;
time make
GOMAXPROCS=10 make test
) || exit $?
(xcd cmd/gofmt
make clean
time make
time make smoketest
) || exit $?
(xcd cmd/ebnflint
make clean
time make
time make test
) || exit $?
(xcd ../misc/cgo/stdio
make clean
./test.bash
) || exit $?
(xcd ../usr/austin/ogle
make clean
time make ogle
) || exit $?
(xcd ../doc/progs
time ./run
) || exit $?
(xcd ../test/bench
./timing.sh -test
) || exit $?
(xcd ../test
./run
) || exit $?