diff options
Diffstat (limited to 'test/pnmtile.test')
-rwxr-xr-x | test/pnmtile.test | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/test/pnmtile.test b/test/pnmtile.test index 11f576bd..80378432 100755 --- a/test/pnmtile.test +++ b/test/pnmtile.test @@ -29,15 +29,21 @@ echo "Error messages should appear below the line." 1>&2 echo "-----------------------------------------------------------" 1>&2 pnmtile 100 testgrid.pbm > ${test_out} || \ - echo -n "Expected failure 1"; test -s ${test_out}; echo " "$? + echo -n "Expected failure 1" + test -s ${test_out}; echo " "$? + rm -f {test_out} pnmtile 100 0 testgrid.pbm > ${test_out} || \ - echo -n "Expected failure 2"; test -s ${test_out}; echo " "$? + echo -n "Expected failure 2" + test -s ${test_out}; echo " "$? + rm -f {test_out} pnmtile 0 100 testgrid.pbm > ${test_out} || \ - echo -n "Expected failure 3"; test -s ${test_out}; echo " "$? + echo -n "Expected failure 3" + test -s ${test_out}; echo " "$? + rm -f {test_out} pnmtile 100 100 100 testgrid.pbm > ${test_out} || \ - echo -n "Expected failure 4"; test -s ${test_out}; echo " "$? - -rm -f ${test_out} \ No newline at end of file + echo -n "Expected failure 4" + test -s ${test_out}; echo " "$? + rm -f {test_out} |