libtiff/test/tiffcp-g3-2d-fill.sh

21 lines
434 B
Bash
Raw Normal View History

#!/bin/sh
#
# Basic sanity check for tiffcp with G3 compression, 2 dimensional
# encoding, and zero-filled boundaries.
#
. ${srcdir}/common.sh
outfile=deleteme-$$.tif
operation=tiffcp
${TIFFCP} -c g3:2d:fill ${IMG_MINISWHITE_1C_1B} $outfile
status=$?
if test $status -eq 0
then
rm -f ${outfile}
else
echo "Test failed (${operation} returns ${status}). Please inspect these output files:"
echo " " ${outfile}
fi
exit $status