about summary refs log tree commit diff
path: root/test/stdin-pgm2.test
blob: 49fc4cda11c19a37d7d43ddfc8918c67c42906b5 (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
#! /bin/sh
# This script tests: pgmtofs fstopgm pgmtolispm lispmtopgm pgmtost4 st4topgm 
# Also requires: pgmmake

tmpdir=${tmpdir:-/tmp}
test_pgm=${tmpdir}/test.pgm
out1=${tmpdir}/out1
out2=${tmpdir}/out2
out3=${tmpdir}/out3
out4=${tmpdir}/out4

pgmmake 0.75 192 165 > ${test_pgm}

for fmt in  \
        fs \
        lispm \
	st4
  do
  testprog1="pgmto"${fmt}
  testprog2=${fmt}"topgm"
    
  ${testprog1} ${test_pgm} > ${out1};   status1=$?
  ${testprog1} < ${test_pgm} > ${out2}; status2=$?
  cmp -s ${out1} ${out2}
  echo ${testprog1}" :" ${status1} ${status2} $?  

  ${testprog2} ${out1} > ${out3};       status3=$?
  ${testprog2} < ${out1} > ${out4};     status4=$?
  cmp -s ${out3} ${out4}
  echo ${testprog2}" :" ${status3} ${status4} $?
  
  rm ${out1} ${out2} ${out3} ${out4}
  done

rm ${test_pgm}

# pgmtost4 size must be 192 x 165

# The following programs do not have converters in the opposite direction
# Bioradtopgm 
# Hipstopgm 
# Psidtopgm 
# Rawtopgm
# Spottopgm