diff options
author | Luca <deri@ntop.org> | 2015-06-04 19:07:23 +0200 |
---|---|---|
committer | Luca <deri@ntop.org> | 2015-06-04 19:07:23 +0200 |
commit | 72b205f5c1bcf5cd90410b3c987d3440ef81593d (patch) | |
tree | 49378e3bcddecf7ea726fbf4ba24dffc4ad7e02e /tests/do.sh | |
parent | 4ce9dec54ecb18b7eb5b9123bfbfc6c57aa35c6b (diff) |
Fixed bug that caused configure to generate GIT version information containing spaces
Modified ndpiReader to include flow details in dumps (used for testing)
Rebuilt all test results to include flow details
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 2af667551..5bc324aa4 100755 --- a/tests/do.sh +++ b/tests/do.sh @@ -8,14 +8,14 @@ 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 + [ ! -f result/$f.out ] && $READER -q -i pcap/$f -w result/$f.out -v 1 done } check_results() { for f in $PCAPS; do if [ -f result/$f.out ]; then - CMD="$READER -q -i pcap/$f -w /tmp/reader.out" + CMD="$READER -q -i pcap/$f -w /tmp/reader.out -v 1" $CMD NUM_DIFF=`diff result/$f.out /tmp/reader.out | wc -l` |