about summary refs log tree commit diff
path: root/test/pamsumm.test
blob: eb41ee36c9d78012f2625bb5cd61abdd21c4cbf0 (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
#! /bin/sh
# This script tests: pamsumm
# Also requires:

echo "Test 1.  Should print in order: 56, 0, 1, 0.250000"

for type in -sum -min -max -mean
  do
  pamsumm -brief $type testgrid.pbm
  done

echo "Test 2.  Should print in order: 1627, 0, 1, 0.483794"

for type in -sum -min -max -mean
  do
  pamsumm -brief $type maze.pbm
  done

echo "Test 3.  Should print in order: 10772432, 15, 255, 106.164760"

for type in -sum -min -max -mean
  do
  pamsumm -brief $type testimg.ppm
  done


echo "Test Invalid"

. ${srcdir}/test-invalid.inc

invCmd "pamsumm -sum -min  testimg.ppm"
invCmd "pamsumm -sum -max  testimg.ppm"
invCmd "pamsumm -mean -max testimg.ppm"
invCmd "pamsumm            testimg.ppm"