aboutsummaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
authordan <[email protected]>2023-05-29 16:08:47 -0400
committerdan <[email protected]>2023-05-29 16:08:47 -0400
commit31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e (patch)
tree02926f0d4cc76ec9a2485159bb1def42cd7bfc22 /runtests.sh
parenteeca88e98212d7b61253b4be5f4ebb2f4b36e770 (diff)
downloadforth-31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e.tar.gz
forth-31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e.tar.bz2
forth-31dcdd0c68c6fa9d5ec69a1c025ead619e30e08e.zip
tests: add lxiny-examples tests
Diffstat (limited to 'runtests.sh')
-rwxr-xr-xruntests.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/runtests.sh b/runtests.sh
index b93a45a..766850d 100755
--- a/runtests.sh
+++ b/runtests.sh
@@ -37,6 +37,11 @@ for f in $dir/*.forth; do
runtest "$f"
done
+for f in $dir/*/*.forth; do
+ n="$(expr "$n" + 1)"
+ runtest "$f"
+done
+
if [ "0" -eq "$failed" ]; then
echo "All $n tests passed" >&2
exit 0