mirror of
https://github.com/hsoft/collapseos.git
synced 2024-11-01 19:30:55 +11:00
efe4b13a4e
I'm planning on adding other subfolders. 8086 for example...
27 lines
360 B
Bash
Executable File
27 lines
360 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
BASE=../..
|
|
EXEC="${BASE}/emul/z80/forth"
|
|
TMP=$(mktemp)
|
|
|
|
chk() {
|
|
echo "Running test $1"
|
|
cat ../harness.fs $1 > ${TMP}
|
|
if ! ${EXEC} ${TMP}; then
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
if [ ! -z $1 ]; then
|
|
chk $1
|
|
exit 0
|
|
fi
|
|
|
|
# those tests run without any builtin
|
|
for fn in test_*.fs; do
|
|
chk "${fn}"
|
|
done
|
|
|
|
echo "All tests passed!"
|
|
rm ${TMP}
|