From fe9b6e1c06df26f93d24870dfd2781b3c88454ef Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 24 Mar 2019 16:52:59 +0000 Subject: Add pamfind tests git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3579 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- test/pamfind.test | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 test/pamfind.test (limited to 'test/pamfind.test') diff --git a/test/pamfind.test b/test/pamfind.test new file mode 100755 index 00000000..39cb1437 --- /dev/null +++ b/test/pamfind.test @@ -0,0 +1,32 @@ +#! /bin/bash +# 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 + +# Test 2 +echo Test 2 +pamfind -target=1 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} + + -- cgit 1.4.1