2018-04-29 16:38:57 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
|
|
|
# Mes --- Maxwell Equations of Software
|
|
|
|
# Copyright © 2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
|
|
#
|
|
|
|
# This file is part of Mes.
|
|
|
|
#
|
|
|
|
# Mes is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
# your option) any later version.
|
|
|
|
#
|
|
|
|
# Mes is distributed in the hope that it will be useful, but
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Mes. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2018-05-25 06:05:02 +00:00
|
|
|
if [ -n "$BUILD_DEBUG" ]; then
|
|
|
|
set -x
|
|
|
|
fi
|
2018-04-29 16:38:57 +00:00
|
|
|
|
2018-05-25 06:05:02 +00:00
|
|
|
export LIBC MESCCLIBS
|
2018-05-20 08:55:44 +00:00
|
|
|
|
2018-05-01 14:50:29 +00:00
|
|
|
GUILE=${GUILE-$MES}
|
|
|
|
DIFF=${DIFF-$(command -v diff)}
|
2018-05-23 04:54:33 +00:00
|
|
|
[ -z "$DIFF" ] && DIFF="sh scripts/diff.scm"
|
2018-05-01 14:50:29 +00:00
|
|
|
|
2018-04-29 16:38:57 +00:00
|
|
|
t=${1-scaffold/tests/t}
|
|
|
|
rm -f "$t".mes-out
|
2018-05-03 18:32:06 +00:00
|
|
|
shift
|
2018-04-29 16:38:57 +00:00
|
|
|
|
2018-05-03 18:32:06 +00:00
|
|
|
set -e
|
|
|
|
|
2018-06-02 09:41:06 +00:00
|
|
|
rm -f "$t".gcc-out
|
|
|
|
if [ -n "$CC" ]; then
|
|
|
|
sh build-aux/cc.sh "$t"
|
|
|
|
|
|
|
|
r=0
|
|
|
|
[ -f "$t".exit ] && r=$(cat "$t".exit)
|
|
|
|
set +e
|
|
|
|
"$t".gcc-out $ARGS > "$t".gcc-stdout
|
|
|
|
m=$?
|
|
|
|
cat "$t".gcc-stdout
|
|
|
|
set -e
|
|
|
|
|
|
|
|
[ $m = $r ]
|
|
|
|
if [ -f "$t".expect ]; then
|
|
|
|
$DIFF -ub "$t".expect "$t".gcc-stdout;
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-05-29 18:07:46 +00:00
|
|
|
rm -f "$t".mes-gcc-out
|
2018-05-04 19:24:39 +00:00
|
|
|
if [ -n "$CC32" ]; then
|
2018-05-29 18:07:46 +00:00
|
|
|
sh build-aux/cc-mes-gcc.sh "$t"
|
2018-05-04 19:24:39 +00:00
|
|
|
|
|
|
|
r=0
|
|
|
|
[ -f "$t".exit ] && r=$(cat "$t".exit)
|
|
|
|
set +e
|
2018-05-30 19:55:39 +00:00
|
|
|
"$t".mes-gcc-out $ARGS > "$t".mes-gcc-stdout
|
2018-05-04 19:24:39 +00:00
|
|
|
m=$?
|
2018-05-29 18:07:46 +00:00
|
|
|
cat "$t".mes-gcc-stdout
|
2018-05-04 19:24:39 +00:00
|
|
|
set -e
|
|
|
|
|
|
|
|
[ $m = $r ]
|
|
|
|
if [ -f "$t".expect ]; then
|
2018-05-29 18:07:46 +00:00
|
|
|
$DIFF -ub "$t".expect "$t".mes-gcc-stdout;
|
2018-05-04 19:24:39 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2018-05-03 18:32:06 +00:00
|
|
|
rm -f "$t".mes-out
|
2018-04-29 16:38:57 +00:00
|
|
|
sh build-aux/cc-mes.sh "$t"
|
|
|
|
|
|
|
|
r=0
|
2018-05-01 14:50:29 +00:00
|
|
|
[ -f "$t".exit ] && r=$(cat "$t".exit)
|
2018-04-29 16:38:57 +00:00
|
|
|
set +e
|
2018-05-30 19:55:39 +00:00
|
|
|
"$t".mes-out $ARGS > "$t".mes-stdout
|
2018-04-29 16:38:57 +00:00
|
|
|
m=$?
|
2018-05-04 19:24:39 +00:00
|
|
|
cat "$t".mes-stdout
|
2018-05-01 14:50:29 +00:00
|
|
|
set -e
|
2018-04-29 16:38:57 +00:00
|
|
|
|
|
|
|
[ $m = $r ]
|
|
|
|
if [ -f "$t".expect ]; then
|
2018-05-18 16:34:58 +00:00
|
|
|
$DIFF -ub "$t".expect "$t".mes-stdout;
|
2018-04-29 16:38:57 +00:00
|
|
|
fi
|