old-cross-binutils/gdb/config/djgpp/djcheck.sh
Eli Zaretskii 7f668b8658 * config/i386/xm-go32.h (HOST_LONG_DOUBLE_FORMAT): Define.
* config/i386/tm-go32.h (TARGET_LONG_DOUBLE_BIT): Remove
	definition (and use the common one in tm-i386.h).
	(REGISTER_CONVERT_TO_VIRTUAL, REGISTER_CONVERT_TO_RAW): Likewise.
	(I386_DJGPP_TARGET): Don't define, it's no longer required.
	(LOW_RETURN_REGNUM, HIGH_RETURN_REGNUM): Remove definition,
	i386-tdep.c defines it for all x86 targets.
	(LD_I387, HEX_LONG_DOUBLE_INPUT): Remove.

	* config/djgpp/fnchange.lst: Add i386-linux-tdep.c.

	* config/djgpp/djcheck.sh: Edit the copyright year out of the test
	results.  Fix editing of `main' arguments for non-GNU Sed.
2000-04-03 15:24:17 +00:00

33 lines
762 B
Bash

#!/bin/sh
# A shell script to run the test suite on the DJGPP version of GDB.
ORIGDIR=`pwd`
GDB=${ORIGDIR}/../gdb.exe
SUBDIRS=`find $ORIGDIR -type d ! -ipath $ORIGDIR`
for d in $SUBDIRS
do
cd $d
echo "Running tests in $d..."
for f in *.out
do
test -f $f || break
base=`basename $f .out`
if test "${base}" = "dbx" ; then
options=-dbx
else
options=
fi
$GDB ${options} < ${base}.in 2>&1 \
| sed -e '/GNU gdb /s/ [.0-9][.0-9]*//' \
-e '/^Copyright/s/[12][0-9][0-9][0-9]/XYZZY/g' \
-e '/Starting program: /s|[A-z]:/.*/||' \
-e '/main (/s/=0x[0-9a-f][0-9a-f]*/=XYZ/g' \
> ${base}.tst
if diff --binary -u ${base}.out ${base}.tst ; then
rm -f ${base}.tst
fi
done
done