blob: 7622c2798f7e080293b35567741edf88f850fe37 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
#! /bin/sh
# This script tests: pnmtofiasco fiascotopnm
# This script tests: pnmtojbig jbigtopnm
# This script tests: pnmtojpeg jpegtopnm
# This script tests: pnmtopalm palmtopnm
# This script tests: pnmtopng pngtopam
# This script tests: pnmtops pstopnm
# This script tests: pnmtorast rasttopnm
# This script tests: pnmtorle rletopnm
# This script tests: pnmtosgi sgitopnm
# This script tests: pnmtosir sirtopnm
# This script tests: pnmtoxwd xwdtopnm
# This script tests: pnmtotiffcmyk tifftopnm
# Also requires: pgmramp
tmpdir=${tmpdir:-/tmp}
test_pgm=${tmpdir}/test.pgm
out1=${tmpdir}/out1
out2=${tmpdir}/out2
out3=${tmpdir}/out3
out4=${tmpdir}/out4
pgmramp -diag 32 32 > ${test_pgm}
echo "Test. Should print (command): 0 0 0"
echo "The following are exceptions: should print (command): 0 0 0 1"
echo "pnmtops, pstopnm, pnmtoxwd, pnmtotiffcmyk"
echo
export NO_ADD_RLE_HISTORY=1
# Suppress command-line sequence, execution time in pnmtorle header
for fmt in \
fiasco \
jbig \
jpeg \
palm \
png \
ps \
rast \
rle \
sgi \
sir \
xwd \
tiffcmyk
do
if [ ${fmt} = "fiasco" ]
then testprog1="pnmto"${fmt}" --progress-meter 0 ";
else
testprog1="pnmto"${fmt};
fi
if [ ${fmt} = "png" ]
then testprog2="pngtopam";
elif [ ${fmt} = "ps" ]
then testprog2="pstopnm -stdout ";
elif [ ${fmt} = "tiffcmyk" ]
then testprog2="tifftopnm";
else
testprog2=${fmt}"topnm";
fi
${testprog1} ${test_pgm} > ${out1}; status1=$?
${testprog1} < ${test_pgm} > ${out2}; status2=$?
test -s ${out1}; status3=$?
cmp -s ${out1} ${out2}
echo ${testprog1}": "${status1} ${status2} ${status3} $?
rm ${out2}
${testprog2} ${out1} > ${out3}; status4=$?
${testprog2} < ${out1} > ${out4}; status5=$?
test -s ${out3}; status6=$?
cmp -s ${out3} ${out4}
echo ${testprog2}": "${status4} ${status5} ${status6} $?
rm ${out1} ${out3} ${out4}
done
rm ${test_pgm}
# pnmtofiasco width, height must be even and at least 32
# use --progressmeter option to suppress progress meter
#
# pnmtojbig input must be bilevel black-white or gray
# pnmtops input file name embedded in output
# pnmtotiffcmyk input file name embedded in output
# "Standard input" if from stdin
# pnmtoxwd input file name embedded in output
# "stdin" if from stdin
|