2008-10-08 10:46:54 -06: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 21:14:28 -06:00
|
|
|
echo
|
2008-10-08 10:46:54 -06:00
|
|
|
echo --- cd $1
|
2008-10-24 21:14:28 -06:00
|
|
|
builtin cd $1
|
2008-10-08 10:46:54 -06:00
|
|
|
}
|
|
|
|
|
2008-11-20 11:54:11 -07:00
|
|
|
maketest() {
|
|
|
|
for i
|
|
|
|
do
|
|
|
|
(
|
|
|
|
xcd $i
|
|
|
|
make clean
|
|
|
|
time make
|
|
|
|
make test
|
|
|
|
) || 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
|
|
|
|
2008-11-21 17:13:31 -07:00
|
|
|
|
2009-06-09 10:53:44 -06:00
|
|
|
(xcd pkg/sync;
|
2008-12-04 13:51:36 -07:00
|
|
|
make clean;
|
|
|
|
time make
|
|
|
|
GOMAXPROCS=10 make test
|
|
|
|
) || exit $?
|
|
|
|
|
2009-06-16 13:03:32 -06:00
|
|
|
(xcd cmd/gofmt
|
2009-03-03 17:09:40 -07:00
|
|
|
make clean
|
|
|
|
time make
|
2009-06-16 13:03:32 -06:00
|
|
|
time make 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
|
|
|
|
make clean
|
|
|
|
time make
|
|
|
|
time make test
|
|
|
|
) || 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 $?
|
|
|
|
|
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
|
|
|
|