blob: ab3763fd3f6983df8db9e74e9da8648e85ae7a9e (
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
|
#! /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 Invalid"
tmpdir=${tmpdir:-/tmp}
test_out=${tmpdir}/test_out
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 > ${test_out} || \
echo -n "Expected failure 1"; test -s ${test_out}; echo " "$?
pgmhist -median -decile testgrid.pbm > ${test_out} || \
echo -n "Expected failure 2"; test -s ${test_out}; echo " "$?
pgmhist -quartile -decile testgrid.pbm > ${test_out} || \
echo -n "Expected failure 3"; test -s ${test_out}; echo " "$?
pgmhist testimg.ppm > ${test_out} || \
echo -n "Expected failure 4"; test -s ${test_out}; echo " "$?
rm ${test_out}
|