about summary refs log tree commit diff
path: root/test/pamfind.test
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-07-03 18:59:15 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-07-03 18:59:15 +0000
commitaaf1a66284edff4e65d11ad8a4ba22b59c3d7a10 (patch)
treec02828d16e477c8b5739e4d2f2caa87dd6ef685c /test/pamfind.test
parent193fcba8c448bbf06cc91ed3f49bf22d947b59f7 (diff)
downloadnetpbm-mirror-aaf1a66284edff4e65d11ad8a4ba22b59c3d7a10.tar.gz
netpbm-mirror-aaf1a66284edff4e65d11ad8a4ba22b59c3d7a10.tar.xz
netpbm-mirror-aaf1a66284edff4e65d11ad8a4ba22b59c3d7a10.zip
Don't use nonstandard echo -n
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4361 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'test/pamfind.test')
-rwxr-xr-xtest/pamfind.test8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/pamfind.test b/test/pamfind.test
index 87ef5f9f..9165fbdf 100755
--- a/test/pamfind.test
+++ b/test/pamfind.test
@@ -44,21 +44,21 @@ echo "-----------------------------------------------------------" 1>&2
 echo "Test Invalid"
 
 pamfind -color=black -target=1,1,1 testimg.ppm > ${test_out} || \
-  echo -n "Expected failure 1"
+  printf "Expected failure 1"
   test -s ${test_out}; echo " "$?
   rm -f ${test_out}
 
 pamfind -target=0,0 testimg.ppm > ${test_out} || \
-  echo -n "Expected failure 2"
+  printf "Expected failure 2"
   test -s ${test_out}; echo " "$?
   rm -f ${test_out}
 
 pamfind -target=0,0,0,0 testimg.ppm > ${test_out} || \
-  echo -n "Expected failure 3"
+  printf "Expected failure 3"
   test -s ${test_out}; echo " "$?
   rm -f ${test_out}
 
 pamfind testimg.ppm > ${test_out} || \
-  echo -n "Expected failure 4"
+  printf "Expected failure 4"
   test -s ${test_out}; echo " "$?
   rm -f ${test_out}