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


# Ignore differences in spaces.

echo "Test 1"

pgmramp -maxval=8 -lr 8 2 | pgmhist | \
  sed -e 's/  */ /g' -e 's/ *$//'

pgmhist testgrid.pbm | \
  sed -e 's/  */ /g' -e 's/ *$//'

echo "Test 2"

pgmramp -lr 256 1 | pgmhist -machine -median   | \
  sed -e 's/  */ /g' -e 's/ *$//'

pgmramp -lr 256 1 | pgmhist -machine -quartile | \
  sed -e 's/  */ /g' -e 's/ *$//'

pgmramp -lr 256 1 | pgmhist -machine -decile   | \
  sed -e 's/  */ /g' -e 's/ *$//'

echo "Test 3"

echo 1>&2
echo "Invalid command-line argument combinations." 1>&2
echo "Error messages should appear below the line." 1>&2
echo "-----------------------------------------------------------" 1>&2

pgmhist -median   -quartile testgrid.pbm || echo "Expected failure 1"
pgmhist -median   -decile   testgrid.pbm || echo "Expected failure 2"
pgmhist -quartile -decile   testgrid.pbm || echo "Expected failure 3"
pgmhist testimg.ppm || echo "Expected failure 4"