1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-07 15:28:45 +10:00
collapseos/tools/tests/unit/runtests.sh

20 lines
354 B
Bash
Raw Normal View History

#!/bin/sh
set -e
set -o pipefail
SCAS=scas
PARTS=../../../parts/z80
2019-05-18 00:00:30 +10:00
ZASMDIR=../../../apps/zasm
RUNBIN=../../emul/runbin/runbin
for fn in *.asm; do
echo "Running test ${fn}"
2019-05-18 00:00:30 +10:00
if ! ${SCAS} -I ${PARTS} -I ${ZASMDIR} -o - ${fn} | ${RUNBIN}; then
echo "failed with code ${PIPESTATUS[1]}"
exit 1
fi
done
echo "All tests passed!"