#!/bin/sh

rm -f result *.DIFF *.RES

for f in `ls *.dsl`
do
        rm -f tmpM
	# echo "$f"
	../../DSL.fw.exe $f &>tmpM
	if test -s tmpM
	then mv tmpM $f".DIFF"
             echo $f ": there are error msgs"
        else echo $f OK
        fi
done
rm -f tmpM
