1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-16 19:58:45 +10:00
collapseos/tools/tests/unit/runtests.sh
Virgil Dupras 7fad3b0c90 Move /parts/z80 to /kernel
Let go of that "meta os" thing. it's not as meta as I made it sound
like. It's a kernel.
2019-05-19 11:19:41 -04:00

20 lines
342 B
Bash
Executable File

#!/bin/sh
set -e
set -o pipefail
SCAS=scas
KERNEL=../../../kernel
APPS=../../../apps
RUNBIN=../../emul/runbin/runbin
for fn in *.asm; do
echo "Running test ${fn}"
if ! ${SCAS} -I ${KERNEL} -I ${APPS} -o - ${fn} | ${RUNBIN}; then
echo "failed with code ${PIPESTATUS[1]}"
exit 1
fi
done
echo "All tests passed!"