blob: e7c9707f0e41fef3724079226ccd13014c160051 (
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/sh
# This script tests: pamfind
# Also requires:
tmpdir=${tmpdir:-/tmp}
sorted0_res=${tmpdir}/pamfind_sorted0.res
sorted1_res=${tmpdir}/pamfind_sorted1.res
# Test 1
echo "Test 1"
pamfind -color=grey17 testimg.ppm
pamfind -target=210,57,41 testimg.ppm
pamfind -target=50,55,49 -machine testimg.ppm
# Test 2
echo "Test 2"
pamfind -target=1 testgrid.pbm
pamfind -target=0 -machine testgrid.pbm
# Test 3
# The two outputs should be disjoint
echo "Test 3"
pamfind -target=0 testgrid.pbm | sort > ${sorted0_res}
pamfind -target=1 testgrid.pbm | sort > ${sorted1_res}
comm -3 ${sorted0_res} ${sorted1_res} |
awk 'END {if (NR==226) print "okay";
else printf("failure (line count=%d)\n", NR)}'
comm -12 ${sorted0_res} ${sorted1_res} |
awk '{print}; END { if(NR == 0) print "okay";
else printf("failure (line count=%d)\n", NR)}'
rm ${sorted0_res} ${sorted1_res}
# Test 4
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
echo "Test Invalid"
pamfind -color=black -target=1,1,1 testimg.ppm > ${test_out} || \
printf "Expected failure 1 "
test -s ${test_out} && echo "unexpected output" || echo "(no output)"
rm -f ${test_out}
pamfind -target=0,0 testimg.ppm > ${test_out} || \
printf "Expected failure 2 "
test -s ${test_out} && echo "unexpected output" || echo "(no output)"
rm -f ${test_out}
pamfind -target=0,0,0,0 testimg.ppm > ${test_out} || \
printf "Expected failure 3 "
test -s ${test_out} && echo "unexpected output" || echo "(no output)"
rm -f ${test_out}
pamfind testimg.ppm > ${test_out} || \
printf "Expected failure 4 "
test -s ${test_out} && echo "unexpected output" || echo "(no output)"
rm -f ${test_out}
|