diff options
author | Luca Deri <deri@ntop.org> | 2015-06-15 00:47:39 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2015-06-15 00:47:39 +0200 |
commit | 984eca8a27346314e7826522f955b37148b79dde (patch) | |
tree | 190df0df6e618f40ea21b712d6a21309caf4161f /tests/do.sh | |
parent | 8b321fda412e04624584c49c50595337ba140c62 (diff) |
Added support for Twitch detection
Minor cosmetic fix in test tool
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 |