1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-16 16:48:45 +10:00
collapseos/tools/tests/zasm/errtests.sh
2019-05-27 11:22:38 -04:00

21 lines
329 B
Bash
Executable File

#!/bin/sh
# no "set -e" because we test errors
ZASM=../../emul/zasm/zasm
chkerr() {
echo "Check that '$1' results in error $2"
${ZASM} <<< $1 > /dev/null
local res=$?
if [[ $res == $2 ]]; then
echo "Good!"
else
echo "$res != $2"
exit 1
fi
}
chkerr "foo" 1
chkerr "ld a, foo" 2