toml/stdex/RUN.sh

16 lines
252 B
Bash
Raw Normal View History

2021-03-07 07:54:24 +00:00
rm -f *.out
for i in *.toml; do
echo -n $i
../toml_cat $i >& $i.out
if [ -f $i.res ]; then
if $(diff $i.out $i.res >& /dev/null); then
echo " [OK]"
else
echo " [FAILED]"
fi
else
2021-03-07 10:26:19 +00:00
echo " [?????]"
2021-03-07 07:54:24 +00:00
fi
done