A sandbox system to automate the building of the source tree and

reporting differences in compiler output with the output of the
previous build.
This commit is contained in:
Marc Olzheim 2004-03-23 16:32:45 +00:00
parent 8ed9644253
commit 4a4923f951
26 changed files with 476 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#
# Common functions
#
# $Id$$Source$
#
# Blame it on marcolz
#
err() {
echo "ERROR: $@" >&2
exit 1
}
warn() {
echo "WARNING: $@" >&2
}