about summary refs log tree commit diff
path: root/test/pamsumm.test
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-06-08 16:41:37 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2019-06-08 16:41:37 +0000
commit7013617be07aa6cc9cb6a12d39e135bb59a8f75e (patch)
treed150d105530f064eafdd670dead19fc45b5449b6 /test/pamsumm.test
parent31bcb07d386170e7c65495b5c0b4ad173b74b911 (diff)
downloadnetpbm-mirror-7013617be07aa6cc9cb6a12d39e135bb59a8f75e.tar.gz
netpbm-mirror-7013617be07aa6cc9cb6a12d39e135bb59a8f75e.tar.xz
netpbm-mirror-7013617be07aa6cc9cb6a12d39e135bb59a8f75e.zip
miscellaneous test updates, especially invalid command line option combinations
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@3624 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'test/pamsumm.test')
-rwxr-xr-xtest/pamsumm.test16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/pamsumm.test b/test/pamsumm.test
index a99dea0e..882b1b14 100755
--- a/test/pamsumm.test
+++ b/test/pamsumm.test
@@ -2,13 +2,29 @@
 # This script tests: pamsumm
 # Also requires:
 
+echo "Test 1"
 
 for type in -sum -min -max -mean
   do
   pamsumm -brief $type testgrid.pbm
   done
 
+echo "Test 2"
+
 for type in -sum -min -max -mean
   do
   pamsumm -brief $type testimg.ppm
   done
+
+
+echo "Test 3"
+
+echo 1>&2
+echo "Invalid command-line argument combinations." 1>&2
+echo "Error messages should appear below the line." 1>&2
+echo "-----------------------------------------------------------" 1>&2
+
+pamsumm -sum -min  testimg.ppm || echo "Expected failure 1"
+pamsumm -sum -max  testimg.ppm || echo "Expected failure 2"
+pamsumm -mean -max testimg.ppm || echo "Expected failure 3"
+pamsumm            testimg.ppm || echo "Expected failure 4"