diff options
Diffstat (limited to 'test/pgmramp.test')
-rwxr-xr-x | test/pgmramp.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/pgmramp.test b/test/pgmramp.test index c3b0ad1c..b4dbb3cd 100755 --- a/test/pgmramp.test +++ b/test/pgmramp.test @@ -31,17 +31,17 @@ test_out=${tmpdir}/test_out for combination in "-lr -tb" "-lr -rectangle" "-rectangle -ellipse" do pgmramp $combination 10 10 > ${test_out} || \ - echo -n "Expected failure: $combination" + printf "Expected failure: $combination" test -s ${test_out}; echo " "$? rm -f ${test_out} done pgmramp -lr 1 > ${test_out} || \ - echo -n "Expected failure: insufficient parameters"; \ + printf "Expected failure: insufficient parameters"; \ test -s ${test_out}; echo " "$? rm -f ${test_out} pgmramp -tb 1 1 1 > ${test_out} || \ - echo -n "Expected failure: excessive parameters"; \ + printf "Expected failure: excessive parameters"; \ test -s ${test_out}; echo " "$? rm -f ${test_out} |