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-10-23 18:13:34 -06:00
|
|
|
(xcd lib/reflect
|
|
|
|
make clean
|
|
|
|
time make
|
|
|
|
bash test.bash
|
2008-10-29 16:23:29 -06:00
|
|
|
) || exit $?
|
2008-10-23 18:13:34 -06:00
|
|
|
|
2008-10-14 23:16:45 -06:00
|
|
|
(xcd lib/regexp
|
|
|
|
make clean
|
|
|
|
time make
|
|
|
|
make test
|
2008-10-29 16:23:29 -06:00
|
|
|
) || exit $?
|
2008-10-14 23:16:45 -06:00
|
|
|
|
2008-10-08 10:46:54 -06:00
|
|
|
(xcd ../usr/gri/gosrc
|
|
|
|
make clean
|
|
|
|
time make
|
2008-10-20 16:08:53 -06:00
|
|
|
# make test
|
2008-10-29 16:23:29 -06:00
|
|
|
) || exit $?
|
2008-10-08 10:46:54 -06:00
|
|
|
|
|
|
|
(xcd ../usr/gri/pretty
|
|
|
|
make clean
|
|
|
|
time make
|
2008-11-13 18:50:46 -07:00
|
|
|
make smoketest
|
2008-10-29 16:23:29 -06: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
|
|
|
|