a2d/desk.acc/res/go.sh
2017-09-20 19:54:19 -07:00

42 lines
916 B
Bash
Executable File

#!/bin/bash
set -e
function do_make {
make "$1" \
&& (tput setaf 2 ; echo "make $1 good" ; tput sgr0 ) \
|| (tput setaf 1 ; tput blink ; echo "MAKE $1 BAD" ; tput sgr0 ; return 1)
}
function verify {
diff "orig/$1.bin" "$1.F1" \
&& (tput setaf 2 ; echo "diff $1 good" ; tput sgr0 ) \
|| (tput setaf 1 ; tput blink ; echo -e "DIFF $1 BAD" ; tput sgr0 ; return 1)
}
function stats {
echo "$1: "$(res/stats.pl < "$1")
}
#do_make clean
do_make all
# Verify original and output match
echo "Verifying diffs:"
verify "calculator"
verify "show_text_file"
verify "date"
verify "puzzle"
echo "Unidentified symbols:"
stats "calculator.s"
stats "show_text_file.s"
stats "date.s"
stats "puzzle.s"
cat show_image_file.F1 > mount/SHOW.IMAGE.FILE.\$F1 \
&& echo "Updated mountable file (SIF)"
cat calc_fixed.F1 > mount/TEST.\$F1 \
&& echo "Updated mountable file (Test)"