#! /bin/sh # This script tests: pnmquantall # Also requires: ppmtorgb3 pgmhist pamcat tmpdir=${tmpdir:-/tmp} rose_ppm=${tmpdir}/rose.ppm cp testimg.ppm ${rose_ppm} && ppmtorgb3 ${rose_ppm} rose_red=${tmpdir}/rose.red rose_grn=${tmpdir}/rose.grn rose_blu=${tmpdir}/rose.blu pnmquantall 20 ${rose_red} ${rose_grn} ${rose_blu} for i in ${rose_red} ${rose_grn} ${rose_blu} do cat $i | cksum done # Should print 1 pamcat ${rose_red} ${rose_grn} ${rose_blu} -tb | \ pgmhist -m | awk '$2>0 {s++}; END { print (s<=20) }' tmpdir=${tmpdir:-/tmp} rose_out=${tmpdir}/rose_out echo 1>&2 echo "Invalid command-line argument combinations." 1>&2 echo "Error messages should appear below the line." 1>&2 echo "-----------------------------------------------------------" 1>&2 pnmquantall -ext xx 0 ${rose_red} ${rose_grn} ${rose_blu} || \ echo "Expected failure 1" rm ${rose_red}xx ${rose_grn}xx ${rose_blu}xx || \ echo "Expected failure 1.rm" pnmquantall -ext xx 1 ${rose_red} ${rose_grn} ${rose_blu} || \ echo "Expected failure 2" rm ${rose_red}xx ${rose_grn}xx ${rose_blu}xx || \ echo "Expected failure 2.rm" pnmquantall -ext xx 2 || \ echo "Expected failure 3" rm ${rose_red} ${rose_grn} ${rose_blu} ${rose_ppm}