aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorToni <matzeton@googlemail.com>2022-07-03 11:16:52 +0200
committerGitHub <noreply@github.com>2022-07-03 11:16:52 +0200
commit59b00b00a72a2f393be03f1e8fcfc07c8b90187b (patch)
tree88b81a4f1f38428523273aca0b154b094a546e3d /tests
parent7c5c811eb0a58150045dccff612574820b02a628 (diff)
Fix byte-order issue during ndpiReader tcp/udp src/dst port serialization. Fixes #1608. (#1614)
* fixed possible memory leak caused by an invalid call to `node_proto_guess_walker()` during serialization * execute serialization code while running regression tests Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/do.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/do.sh.in b/tests/do.sh.in
index 63d2fa591..ba16045a0 100755
--- a/tests/do.sh.in
+++ b/tests/do.sh.in
@@ -45,7 +45,7 @@ build_results() {
#echo $f
# create result files if not present
if [ ! -f result/$f.out ]; then
- CMD="$READER -q -t -i pcap/$f -w result/$f.out -v 2"
+ CMD="$READER -q -K JSON -k /dev/null -t -i pcap/$f -w result/$f.out -v 2"
$CMD
fi
done
@@ -73,7 +73,7 @@ check_results() {
fi
if [ -f result/$f.out ]; then
- CMD="$READER -q -t -i pcap/$f -w /tmp/reader.out -v 2"
+ CMD="$READER -q -K JSON -k /dev/null -t -i pcap/$f -w /tmp/reader.out -v 2"
$CMD
CMD_RET=$?
if [ $CMD_RET -eq 0 ]; then