blob: cd58913fb0f3d454816dff18a528b4f1b66f9083 (
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"
. ./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"
|