aboutsummaryrefslogtreecommitdiff
path: root/tests/do.sh
diff options
context:
space:
mode:
authorLuca Deri <deri@ntop.org>2015-06-15 00:47:39 +0200
committerLuca Deri <deri@ntop.org>2015-06-15 00:47:39 +0200
commit984eca8a27346314e7826522f955b37148b79dde (patch)
tree190df0df6e618f40ea21b712d6a21309caf4161f /tests/do.sh
parent8b321fda412e04624584c49c50595337ba140c62 (diff)
Added support for Twitch detection
Minor cosmetic fix in test tool
Diffstat (limited to 'tests/do.sh')
-rwxr-xr-xtests/do.sh4
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