diff options
author | Luca Deri <deri@ntop.org> | 2018-11-21 00:32:32 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2018-11-21 00:32:32 +0100 |
commit | 669fdf6b5f3657c638ffa8df6ff1baebf5b311b1 (patch) | |
tree | af6540946a53550ea3d198c7e232ea5ac8ae072e /tests/do.sh | |
parent | 21504c849233d69b896fdff364b3933e8ec997d3 (diff) |
Improved skype, teredo, netbios heuristics
Changed ndpi_detection_giveup() API: guess is now part of the call
Diffstat (limited to 'tests/do.sh')
-rwxr-xr-x | tests/do.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/do.sh b/tests/do.sh index 7516e5997..a17878fb5 100755 --- a/tests/do.sh +++ b/tests/do.sh @@ -7,7 +7,10 @@ build_results() { for f in $PCAPS; do #echo $f # create result files if not present - [ ! -f result/$f.out ] && $READER -q -i pcap/$f -w result/$f.out -v 1 + if [ ! -f result/$f.out ]; then + CMD="$READER -q -i pcap/$f -w result/$f.out -v 1" + $CMD + fi done } |