diff options
Diffstat (limited to 'tests/do.sh')
-rwxr-xr-x | tests/do.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/do.sh b/tests/do.sh index 5bc324aa4..764b049f9 100755 --- a/tests/do.sh +++ b/tests/do.sh @@ -20,9 +20,9 @@ check_results() { NUM_DIFF=`diff result/$f.out /tmp/reader.out | wc -l` if [ $NUM_DIFF -eq 0 ]; then - echo "$f\t OK" + printf "%-32s\tOK\n" "$f" else - echo "$f\t ERROR" + printf "%-32s\tERROR\n" "$f" echo "$CMD" diff result/$f.out /tmp/reader.out RC=1 |