diff options
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 5 |
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 |