blob: e948ad0c243c701edde552229ed3a44ad18cb50c (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#! /bin/sh
# This script tests: pamtable
# Also requires: pamseq pamrestack pamdepth pbmmake ppmrainbow
echo "Test 1"
pamtable testgrid.pbm
echo
echo "Test 2"
pamseq 3 2 -tupletype=RGB | pamtable
echo
echo "Test 3"
pamseq 4 1 -tupletype=RGBA | pamtable
echo
echo "Test 4"
pbmmake -gray 5 1 | pamtable -tuple
echo
echo "Test 5"
pbmmake -gray 1 10 | pamtable -tuple
echo
echo "Test 6"
pamseq 3 3 -tupletype=RGB | pamrestack -width=3 | pamtable -tuple
echo
echo "Test 7"
pamseq 2 255 -max=50,255 -step=10,17 | pamrestack -width=8 | \
pamtable -hex
echo
echo "Test 8"
for maxval in 9 10 9999 10000 65535
do
pbmmake -g 2 2 | pamdepth ${maxval} | pamtable
echo
ppmrainbow -width=3 -height=2 -norepeat black white | \
pamdepth ${maxval} | pamtable
echo
ppmrainbow -width=4 -height=2 -norepeat red blue green | \
pamdepth ${maxval} | pamtable
echo
done
echo "Test Invalid"
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
echo "Should print: Expected failure 1"
pamseq -tupletype="void" 1 1 | pamtable -tuple -hex > \
${test_out} || \
printf "Expected failure"
test -s ${test_out}; echo " "$?
rm -f ${test_out}
|