blob: 14071a649eec27561c5f151903fce23eb1441c92 [file] [log] [blame]
#!/bin/sh
cd tests
for i in test*[0-9] ; do
if ./${i} | cmp -s "${i}.ans" - ; then
echo "PASS: ${i}"
else
echo "FAIL: ${i}"
fi
done