@ fix failing exit_policy_run_tests

This commit is contained in:
RadekSabacky
2025-11-19 14:26:16 +01:00
parent 22db132c09
commit 9c5847dc67
@@ -935,17 +935,17 @@ exit_policy_run_tests() {
local failed=0
test_forward_chain_hook || ((failed += 1))
((total++))
((total += 1))
test_port_range_rules || ((failed += 1))
((total++))
((total += 1))
test_critical_services || ((failed += 1))
((total++))
((total += 1))
if [[ $skip_default -eq 0 ]]; then
test_default_reject_rule || ((failed += 1))
((total++))
((total += 1))
fi
echo "tests run: $total, failures: $failed"