From 63af24fc80d1451cdf2d62eecea5e7edb2954123 Mon Sep 17 00:00:00 2001 From: Florian Westphal Date: Mon, 18 Sep 2023 12:28:16 +0200 Subject: tests/shell: skip netdev_chain_0 if kernel requires netdev device This test case only works on kernel 6.4+. Add feature probe for this and tag the test accordingly using the scheme added by Thomas Haller in "tests/shell: skip tests if nft does not support JSON mode" so that run-test.sh skips it if kernel requires a device. Signed-off-by: Florian Westphal Signed-off-by: Thomas Haller --- tests/shell/features/netdev_chain_without_device.nft | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 tests/shell/features/netdev_chain_without_device.nft (limited to 'tests/shell/features') diff --git a/tests/shell/features/netdev_chain_without_device.nft b/tests/shell/features/netdev_chain_without_device.nft new file mode 100644 index 00000000..25eb200f --- /dev/null +++ b/tests/shell/features/netdev_chain_without_device.nft @@ -0,0 +1,7 @@ +# 207296f1a03b ("netfilter: nf_tables: allow to create netdev chain without device") +# v6.4-rc1~132^2~14^2 +table netdev t { + chain c { + type filter hook ingress priority 0; policy accept; + } +} -- cgit v1.2.3