aboutsummaryrefslogtreecommitdiffstats
path: root/runtests.sh
diff options
context:
space:
mode:
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