From aaf1a66284edff4e65d11ad8a4ba22b59c3d7a10 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Sun, 3 Jul 2022 18:59:15 +0000 Subject: Don't use nonstandard echo -n git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4361 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- test/ppmforge-parameters.test | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'test/ppmforge-parameters.test') diff --git a/test/ppmforge-parameters.test b/test/ppmforge-parameters.test index 83758213..e5822673 100755 --- a/test/ppmforge-parameters.test +++ b/test/ppmforge-parameters.test @@ -30,36 +30,36 @@ echo "Error messages should appear below the line." 1>&2 echo "-----------------------------------------------------------" 1>&2 ppmforge -night -dimension=0 > ${test_out} || \ - echo -n "Expected failure 1" + printf "Expected failure 1" test -s ${test_out}; echo " "$? rm -f ${test_out} ppmforge -dimension=10 > ${test_out} || \ - echo -n "Expected failure 2" + printf "Expected failure 2" test -s ${test_out}; echo " "$? rm -f ${test_out} ppmforge -dimension=-1 > ${test_out} || \ - echo -n "Expected failure 3" + printf "Expected failure 3" test -s ${test_out}; echo " "$? rm -f ${test_out} ppmforge -clouds -mesh=1.99 > ${test_out} || \ - echo -n "Expected failure 4" + printf "Expected failure 4" test -s ${test_out}; echo " "$? rm -f ${test_out} ppmforge -clouds -power=0 > ${test_out} || \ - echo -n "Expected failure 5" + printf "Expected failure 5" test -s ${test_out}; echo " "$? rm -f ${test_out} ppmforge -ice=-1 > ${test_out} || \ - echo -n "Expected failure 6" + printf "Expected failure 6" test -s ${test_out}; echo " "$? rm -f ${test_out} ppmforge -glaciers=-1 > ${test_out} || \ - echo -n "Expected failure 7" + printf "Expected failure 7" test -s ${test_out}; echo " "$? rm -f ${test_out} -- cgit 1.4.1