diff options
Diffstat (limited to 'test/pamseq.test')
-rwxr-xr-x | test/pamseq.test | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/pamseq.test b/test/pamseq.test index 3fe0fc31..ce3d4995 100755 --- a/test/pamseq.test +++ b/test/pamseq.test @@ -17,17 +17,17 @@ tmpdir=${tmpdir:-/tmp} test_out=${tmpdir}/test_out pamseq 1 > ${test_out} || \ - echo -n "Expected failure 1" + printf "Expected failure 1" test -s ${test_out}; echo " "$? rm -f ${test_out} pamseq 0 255 > ${test_out} || \ - echo -n "Expected failure 2" + printf "Expected failure 2" test -s ${test_out}; echo " "$? rm -f ${test_out} pamseq 3 0 > ${test_out} || \ - echo -n "Expected failure 3" + printf "Expected failure 3" test -s ${test_out}; echo " "$? rm -f ${test_out} @@ -37,6 +37,6 @@ c256=${c64}${c64}${c64}${c64} # Tupletype string length=256 pamseq -tupletype="${c256}" 3 15 > ${test_out} || \ - echo -n "Expected failure 4" + printf "Expected failure 4" test -s ${test_out}; echo " "$? rm -f ${test_out} |