blob: b1cdd6d908b508656806de7f5e80c6a85c1c24ad (
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
63
64
|
#! /bin/bash
# This script tests: pnmremap
# Also requires: pamseq pamtopnm
tmpdir=${tmpdir:-/tmp}
palette=${tmpdir}/palette
#palette255=${tmpdir}/palette255
pamseq 3 5 -tupletype=RGB | pamtopnm > ${palette}
#pamdepth 255 ${palette} > ${palette255}
# Test 1. Floyd-Steinberg
# This fails with older versions of Netpbm and x86-64.
# May also fail on other non-Intel architectures.
# v. 10.59.2
# x86-32: 2667816854 101482
# x86-64: 3602410851 101482
pnmremap -mapfile=${palette} -floyd -norandom \
testimg.ppm | cksum
#pnmremap -mapfile=${palette255} -floyd -norandom \
# testimg.ppm | cksum
rm ${palette} # ${palette255}
echo 1>&2
echo "Invalid command-line arguments." 1>&2
echo "Error messages should appear below the line." 1>&2
echo "-----------------------------------------------------------" 1>&2
tmpdir=${tmpdir:-/tmp}
test_out=${tmpdir}/test_out
pnmremap -mapfile=/dev/null testimg.ppm > ${test_out} || \
echo -n "Expected failure 1"
test -s ${test_out}; echo " "$?
rm -f ${test_out}
pnmremap -mapfile=/dev/zero testimg.ppm > ${test_out} || \
echo -n "Expected failure 2"
test -s ${test_out}; echo " "$?
rm -f ${test_out}
pnmremap testimg.ppm > ${test_out} || \
echo -n "Expected failure 3"
test -s ${test_out}; echo " "$?
rm -f ${test_out}
pnmremap -fs -nofs testimg.ppm > ${test_out} || \
echo -n "Expected failure 4"
test -s ${test_out}; echo " "$?
rm -f ${test_out}
pnmremap -mapfile=testgrid.pbm -missingcolor=rgb:00/ff/00 testimg.ppm \
> ${test_out} || \
echo -n "Expected failure 5"
test -s ${test_out}; echo " "$?
rm -f ${test_out}
pnmremap -mapfile=testgrid.pbm -firstisdefault testimg.ppm > ${test_out} || \
echo -n "Expected failure 6"
test -s ${test_out}; echo " "$?
rm -f ${test_out}
|