add test script

aimed at checking if the quality of the images drops quickly or not
This commit is contained in:
fritz-hh
2013-04-26 14:26:03 +02:00
parent 1c0eb03b3b
commit 815117f653

View File

@@ -0,0 +1,15 @@
#!/bin/sh
#
# Perform OCR several times in order to find how quicly the quality decreases
cpt=1
while [ $cpt -le 10 ] ; do
echo "------- Itteration $cpt ---------"
! ../OCRmyPDF.sh -vv -l deu -k ../tmp/ocred-$(($cpt-1)).pdf ../tmp/ocred-$cpt.pdf && exit 1
cpt=$(($cpt+1))
done