From 279654904d5186430588b475501b2ca0d3ab6517 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Tue, 14 Nov 2023 16:57:22 +0100 Subject: tests: shell: skip if kernel does not support flowtable counter Check if kernel provides flowtable counter supports which is available since 53c2b2899af7 ("netfilter: flowtable: add counter support"). Signed-off-by: Pablo Neira Ayuso --- tests/shell/features/flowtable_counter.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 tests/shell/features/flowtable_counter.sh (limited to 'tests/shell/features/flowtable_counter.sh') diff --git a/tests/shell/features/flowtable_counter.sh b/tests/shell/features/flowtable_counter.sh new file mode 100755 index 00000000..a4c4c621 --- /dev/null +++ b/tests/shell/features/flowtable_counter.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +# 53c2b2899af7 ("netfilter: flowtable: add counter support") +# v5.7-rc1~146^2~12^2~16 + +EXPECTED="table ip filter2 { + flowtable main_ft2 { + hook ingress priority filter + devices = { lo } + counter + } +}" + +$NFT -f - <<< $EXPECTED + +diff -u <($NFT list ruleset) - <<<"$EXPECTED" -- cgit v1.2.3