1
0
mirror of https://github.com/golang/go synced 2024-10-01 18:38:34 -06:00
go/src/run.bash

55 lines
685 B
Bash
Raw Normal View History

#!/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 test
) || exit $?
done
}
maketest \
lib \
# all of these are subtly different
# from what maketest does.
(xcd lib/sync;
make clean;
time make
GOMAXPROCS=10 make test
) || exit $?
(xcd ../usr/gri/pretty
make clean
time make
make smoketest
# TODO: this belongs elsewhere
cp godoc $HOME/bin
) || exit $?
(xcd ../doc/progs
time ./run
) || exit $?
(xcd ../test
./run
) || exit $?