2008-10-08 09:46:54 -07:00
|
|
|
#!/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() {
|
2008-10-24 20:14:28 -07:00
|
|
|
echo
|
2008-10-08 09:46:54 -07:00
|
|
|
echo --- cd $1
|
2008-10-24 20:14:28 -07:00
|
|
|
builtin cd $1
|
2008-10-08 09:46:54 -07:00
|
|
|
}
|
|
|
|
|
|
2008-11-20 10:54:11 -08:00
|
|
|
maketest() {
|
|
|
|
|
for i
|
|
|
|
|
do
|
|
|
|
|
(
|
|
|
|
|
xcd $i
|
|
|
|
|
make clean
|
|
|
|
|
time make
|
|
|
|
|
make test
|
|
|
|
|
) || exit $?
|
|
|
|
|
done
|
|
|
|
|
}
|
2008-11-17 12:34:03 -08:00
|
|
|
|
2008-11-20 10:54:11 -08:00
|
|
|
maketest \
|
|
|
|
|
lib/math\
|
|
|
|
|
lib/reflect\
|
|
|
|
|
lib/regexp\
|
|
|
|
|
lib/strconv\
|
|
|
|
|
|
|
|
|
|
# all of these are subtly different
|
|
|
|
|
# from what maketest does.
|
2008-10-23 17:13:34 -07:00
|
|
|
|
2008-11-21 16:13:31 -08:00
|
|
|
(xcd lib; make test) || exit $?
|
|
|
|
|
|
2008-11-20 10:54:11 -08:00
|
|
|
(xcd ../usr/gri/pretty
|
2008-10-14 22:16:45 -07:00
|
|
|
make clean
|
|
|
|
|
time make
|
2008-11-20 10:54:11 -08:00
|
|
|
make smoketest
|
2008-10-29 15:23:29 -07:00
|
|
|
) || exit $?
|
2008-10-14 22:16:45 -07:00
|
|
|
|
2008-10-08 09:46:54 -07:00
|
|
|
(xcd ../usr/gri/gosrc
|
|
|
|
|
make clean
|
|
|
|
|
time make
|
2008-10-20 15:08:53 -07:00
|
|
|
# make test
|
2008-10-29 15:23:29 -07:00
|
|
|
) || exit $?
|
2008-10-08 09:46:54 -07:00
|
|
|
|
|
|
|
|
(xcd ../test
|
|
|
|
|
./run
|
2008-10-29 15:23:29 -07:00
|
|
|
) || exit $?
|
2008-10-08 09:46:54 -07:00
|
|
|
|