2008-05-24 18:24:25 -04:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Basic sanity check for tiffcp with G3 compression and 1 dimensional encoding.
|
|
|
|
#
|
2009-01-23 00:37:18 -05:00
|
|
|
. ${srcdir:-.}/common.sh
|
2008-05-24 18:24:25 -04:00
|
|
|
outfile=deleteme-$$.tif
|
|
|
|
operation=tiffcp
|
|
|
|
${TIFFCP} -c g3:1d ${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
|