github-ci: relax block check

pull/14742/head
Victor Julien 5 months ago
parent 0a86b0f79d
commit c1d6958940

@ -209,8 +209,8 @@ if [ $ACCEPTED -eq 0 ]; then
echo "ERROR should have seen non-0 accepted"
RES=1
fi
if [ $BLOCKED -ne 10 ]; then
echo "ERROR should have seen 10 blocked"
if [ $BLOCKED -lt 10 ]; then
echo "ERROR should have seen 10+ blocked"
RES=1
fi

@ -223,8 +223,8 @@ if [ $ACCEPTED -eq 0 ]; then
echo "ERROR no packets captured"
RES=1
fi
if [ $BLOCKED -ne 10 ]; then
echo "ERROR should have seen 10 blocked"
if [ $BLOCKED -lt 10 ]; then
echo "ERROR should have seen 10+ blocked"
RES=1
fi

Loading…
Cancel
Save