diff options
author | lns <matzeton@googlemail.com> | 2023-09-24 21:15:50 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2023-09-24 21:15:50 +0200 |
commit | 8436990b756ae3bc7b527e3238989cef9cbdb1d3 (patch) | |
tree | 2efb0ba8481aaa80e97550feacd0c8cfb06a5865 /tests/do.sh.in | |
parent | 725fcf4852f06e2f54469c2439d13169d5d68d09 (diff) |
Added HAProxy protocol.add/haproxy-and-more
* new special subprotocol parameter: NDPI_PROTOCOL_CALL_EXCLUDED
* fixed tests/do.sh.in failure print
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'tests/do.sh.in')
-rwxr-xr-x | tests/do.sh.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/do.sh.in b/tests/do.sh.in index 4ce47368c..23db33a3c 100755 --- a/tests/do.sh.in +++ b/tests/do.sh.in @@ -164,8 +164,8 @@ for d in $(find ./cfgs/* -type d -maxdepth 0 2>/dev/null) ; do build_results check_results $* - test ${RC} -ne 0 && printf '%s: %s\n' "${0}" "${RC} pcap(s) failed" - test ${RC} -ne 0 && echo "Failed: ${FAILURES[@]}" + test ${#FAILURES} -ne 0 && printf '%s: %s\n' "${0}" "${RC} pcap(s) failed" + test ${#FAILURES} -ne 0 && echo "Failed: ${FAILURES[@]}" cd ../../ done |