2017-08-29 03:58:09 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-04-26 03:59:49 +00:00
|
|
|
# Run this from the desk.acc directory
|
|
|
|
|
2017-08-29 03:58:09 +00:00
|
|
|
set -e
|
2018-11-26 05:16:39 +00:00
|
|
|
source "../res/util.sh"
|
2017-08-29 03:58:09 +00:00
|
|
|
|
2017-09-06 01:41:13 +00:00
|
|
|
function verify {
|
2018-04-26 03:59:49 +00:00
|
|
|
diff "orig/$1.bin" "out/$1.built" \
|
2018-02-19 18:49:45 +00:00
|
|
|
&& (cecho green "diff $1 good" ) \
|
|
|
|
|| (tput blink ; cecho red "DIFF $1 BAD" ; return 1)
|
2017-09-06 01:41:13 +00:00
|
|
|
}
|
|
|
|
|
2017-09-14 03:09:36 +00:00
|
|
|
function stats {
|
2018-03-06 05:20:00 +00:00
|
|
|
echo "$(printf '%-20s' $1)""$(../res/stats.pl < $1)"
|
2017-09-14 03:09:36 +00:00
|
|
|
}
|
|
|
|
|
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
|
2017-09-14 03:09:36 +00:00
|
|
|
echo "Verifying diffs:"
|
2017-09-06 01:41:13 +00:00
|
|
|
verify "calculator"
|
2018-02-22 05:18:46 +00:00
|
|
|
verify "show.text.file"
|
2017-09-11 03:18:29 +00:00
|
|
|
verify "date"
|
|
|
|
verify "puzzle"
|
2018-04-20 04:23:23 +00:00
|
|
|
verify "sort.directory"
|
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:"
|
2017-09-14 03:09:36 +00:00
|
|
|
stats "calculator.s"
|
2018-02-22 05:18:46 +00:00
|
|
|
stats "show.text.file.s"
|
2017-09-14 03:09:36 +00:00
|
|
|
stats "date.s"
|
|
|
|
stats "puzzle.s"
|
2018-04-20 04:23:23 +00:00
|
|
|
stats "sort.directory.s"
|