diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2022-08-16 01:14:05 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2022-08-16 01:14:05 +0000 |
commit | ee202873edb0d236e03270b96504e58b4664bd8b (patch) | |
tree | 20b25b22f031cd81204a36e19795e8759a50e4b1 /test | |
parent | 939dd71a6334d2a2f180cb19666e7544c2753f74 (diff) | |
download | netpbm-mirror-ee202873edb0d236e03270b96504e58b4664bd8b.tar.gz netpbm-mirror-ee202873edb0d236e03270b96504e58b4664bd8b.tar.xz netpbm-mirror-ee202873edb0d236e03270b96504e58b4664bd8b.zip |
Update internal use of 'pamcat' to adapt to its new ability to produce PNM output
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4411 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'test')
-rwxr-xr-x | test/pamarith.test | 2 | ||||
-rwxr-xr-x | test/pamundice.test | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/pamarith.test b/test/pamarith.test index f0149c66..34922a90 100755 --- a/test/pamarith.test +++ b/test/pamarith.test @@ -18,7 +18,7 @@ pgmmake -maxval 15 0.15 16 1 > ${input2_pgm} rgb3toppm ${input1_pgm} ${input1_pgm} ${input1_pgm} > ${input1_ppm} rgb3toppm ${input2_pgm} ${input2_pgm} ${input2_pgm} > ${input2_ppm} -pamcat -tb ${input1_pgm} ${input2_pgm} | pamtopnm -assume -plain +pamcat -tb ${input1_pgm} ${input2_pgm} -plain for fn in "-add" "-subtract" "-multiply" "-divide" "-difference" \ "-minimum" "-maximum" "-mean" "-compare" "-equal" \ diff --git a/test/pamundice.test b/test/pamundice.test index 20a84503..ba532c30 100755 --- a/test/pamundice.test +++ b/test/pamundice.test @@ -28,7 +28,7 @@ for y in 0 1 2 3 4 pamundice -across=3 ${fname_stem}"_"$y"_%1a".pgm > ${tempfile}_"$y" done -pamcat -tb ${tempfile}_[01234] | pamtopnm --assume | cksum +pamcat -tb ${tempfile}_[01234] | cksum rm ${tempfile}_[01234] # Note: the following 2 are valid. There should not be warning messages. @@ -38,7 +38,7 @@ for x in 0 1 2 pamundice -down=5 ${fname_stem}"_%1d_"$x.pgm > ${tempfile}"_"$x done -pamcat -lr ${tempfile}_[012] | pamtopnm --assume | cksum +pamcat -lr ${tempfile}_[012] | cksum rm ${tempfile}_[012] rm ${fname_stem}_?_?.pgm |