1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
#! /bin/sh
mkdir -p out || exit 99
name=$( basename "$0" )
datafile="$srcdir/${name}.data"
dumpfile="out/${name}.dump"
resultfile="out/${name}.result"
expectfile="$srcdir/multixlat.expect"
./mkelf "$dumpfile" <<EOF
ei_class = 2
ei_data = 1
e_machine = 62
e_phoff = 0x1000
DATA = $datafile
EOF
rc=$?
if [ $rc -ne 0 ]; then
echo "Cannot create ELF file" >&2
exit $rc
fi
echo "Created ELF dump: $dumpfile"
./multixlat -o virt_bits=48 -1 0x2e10000 -2 0x1918000 -a 0 -l 8 "$dumpfile" >"$resultfile"
rc=$?
if [ $rc -ne 0 ]; then
echo "Cannot dump ELF data" >&2
exit $rc
fi
if ! diff "$expectfile" "$resultfile"; then
echo "Results do not match" >&2
exit 1
fi
|