# GAPDIR points to the directory containing the gap executable # (so for out-of-tree builds, builddir and not srcdir)
GAPDIR=${GAPDIR:-../..}
# Clean up any old compiled files before running tests rm -rf .libs
retvalue=0
gap="$GAPDIR/gap"
gac="$GAPDIR/gac" for gfile in *.g; do echo"Now testing ${gfile}"
echo" now interpreting ${gfile} ..."
./run_interpreted.sh "${gap}""${gfile}""${gfile}.bad" if ! diff -u -b "${gfile}.out""${gfile}.bad"; then echo"ERROR: ${gfile} failed without compiling"
retvalue=1 fi
echo" now compiling ${gfile} dynamically ..."
./run_compiled_dynamic.sh "${gap}""${gac}""${gfile}" > "${gfile}.bad" if ! diff -u -b "${gfile}.out""${gfile}.bad"; then echo"ERROR: ${gfile} failed with compiling and dynamic linking"
retvalue=1 fi if ! git diff --exit-code -- ${gfile}.dynamic.c; then echo"ERROR: ${gfile}.dynamic.c changed unexpectedly"
retvalue=1 fi rm -f "${gfile}.bad"
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.