#!/bin/sh

ERRORS=0
for f in staticerrors/*.hs          ; do /bin/sh testOne ${f%.hs}; ERRORS=$[$ERRORS+$?] ; done
exit $ERRORS
