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 37 38 39 40 41 42 43 44 45 46 47
|
#!/bin/sh
#
# script to test Hatari debugger and console script features
if [ $# -ne 1 ]; then
echo "usage: ${0##*/} <EmuTOS 512k binary>"
exit 1
fi
etos=$1
if [ \! -f $etos ]; then
echo "ERROR: given EmuTOS image file '$etos' doesn't exist!"
exit 1
fi
hpath=../build/src
if [ \! -d $hpath ]; then
echo "ERROR: Hatari source directory '$path' missing!"
exit 1
fi
hatari=$hpath/hatari
if [ \! -x $hatari ]; then
echo "ERROR: Hatari binary '$hatari' missing!"
exit 1
fi
console=../tools/hconsole/hconsole.py
if [ \! -x $console ]; then
echo "ERROR: Hatari console script '$console' missing!"
exit 1
fi
# Enable extra GCC mudflap options in case Hatari's compiled with it:
# http://gcc.gnu.org/wiki/Mudflap_Pointer_Debugging
export MUDFLAP_OPTIONS="-viol-gdb -internal-checking -wipe-stack -wipe-heap"
echo "TESTING: debugger input file"
echo "============================"
cmd="$hatari --sound off --machine falcon --tos $etos --dsp emu --parse debugui/debugger.ini"
echo $cmd
$cmd
echo
echo "TESTING: console input file"
echo "==========================="
PATH=$hpath:$PATH $console debugui/console.ini --exit --
|