a2d/desk.acc/res/go.sh

62 lines
1.2 KiB
Bash
Raw Normal View History

2017-08-29 03:58:09 +00:00
#!/bin/bash
set -e
2018-02-19 18:49:45 +00:00
function cecho {
case $1 in
red) tput setaf 1 ;;
green) tput setaf 2 ;;
yellow) tput setaf 3 ;;
esac
echo -e "$2"
tput sgr0
}
2017-09-07 04:33:22 +00:00
function do_make {
2018-04-11 04:12:48 +00:00
make $MAKE_FLAGS "$1" \
2018-02-19 18:49:45 +00:00
&& (cecho green "make $1 good") \
|| (tput blink ; cecho red "MAKE $1 BAD" ; return 1)
2017-09-07 04:33:22 +00:00
}
2017-08-29 03:58:09 +00:00
function verify {
2018-02-22 05:18:46 +00:00
diff "orig/$1.bin" "out/$1.\$F1" \
2018-02-19 18:49:45 +00:00
&& (cecho green "diff $1 good" ) \
|| (tput blink ; cecho red "DIFF $1 BAD" ; return 1)
}
function stats {
2018-03-06 05:20:00 +00:00
echo "$(printf '%-20s' $1)""$(../res/stats.pl < $1)"
}
2018-02-22 05:18:46 +00:00
function mount {
uppercase=$(echo "$1" | tr /a-z/ /A-Z/)
cp "out/$1" "mount/$uppercase" \
&& (cecho green "mounted $uppercase" ) \
|| (cecho red "failed to mount $uppercase" ; return 1)
}
2017-09-07 04:33:22 +00:00
#do_make clean
do_make all
2017-08-29 03:58:09 +00:00
# Verify original and output match
echo "Verifying diffs:"
verify "calculator"
2018-02-22 05:18:46 +00:00
verify "show.text.file"
verify "date"
verify "puzzle"
2017-08-29 03:58:09 +00:00
2018-02-22 05:18:46 +00:00
# Compute stats
2018-03-06 05:20:00 +00:00
echo "Stats:"
stats "calculator.s"
2018-02-22 05:18:46 +00:00
stats "show.text.file.s"
stats "date.s"
stats "puzzle.s"
2018-02-22 05:18:46 +00:00
# Mountable directory
2018-04-11 04:25:33 +00:00
if [ -d mount ]; then
echo "Copying files to mount/"
mount 'show.image.file.$F1'
mount 'this.apple.$F1'
2018-04-15 22:41:35 +00:00
mount 'eyes.$F1'
2018-04-11 04:25:33 +00:00
fi