summaryrefslogtreecommitdiff
path: root/tools/testall-skrewt
blob: 2b454772040e028d4d8de968296fec43cc5261cd (plain)
1
2
3
4
5
6
7
8
9
#! /bin/bash

i=0
for file in /home/jsd/Maildir/cur/* ; do
  ((ii++))
  echo "**** $ii $file"
  <$file ./skrewt -strict -note $(basename $file) >/tmp/testall.eml && diff $file /tmp/testall.eml || exit 1
done
echo OK