#!/bin/sh

for f in `find tests -type f -print`
do
	echo $f
	echo
	pascal.exe $f > /dev/null
	echo '======================================================='
done
