* [PATCH nft] tests: shell: fix name based checks with CONFIG_NF_TABLES=y
@ 2025-10-07 20:28 Florian Westphal
0 siblings, 0 replies; only message in thread
From: Florian Westphal @ 2025-10-07 20:28 UTC (permalink / raw)
To: netfilter-devel; +Cc: Florian Westphal
Don't include a trailing space, its only there if nftables is a module:
hook ingress device foo2 {
0000000000 chain netdev t c [nf_tables]
}
with CONFIG_NF_TABLES=y, this gets listed as:
'0000000000 chain netdev t c\n'.
Signed-off-by: Florian Westphal <fw@strlen.de>
---
tests/shell/testcases/chains/netdev_chain_name_based_hook_0 | 2 +-
tests/shell/testcases/flowtable/0016name_based_hook_0 | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/shell/testcases/chains/netdev_chain_name_based_hook_0 b/tests/shell/testcases/chains/netdev_chain_name_based_hook_0
index 8a8a60178408..2e37b23a410a 100755
--- a/tests/shell/testcases/chains/netdev_chain_name_based_hook_0
+++ b/tests/shell/testcases/chains/netdev_chain_name_based_hook_0
@@ -2,7 +2,7 @@
# NFT_TEST_REQUIRES(NFT_TEST_HAVE_ifname_based_hooks)
-cspec=' chain netdev t c '
+cspec=' chain netdev t c'
$NFT add table netdev t
$NFT add $cspec '{ type filter hook ingress priority 0; devices = { lo, foo* }; }'
$NFT list hooks netdev device lo | grep -q "$cspec" || {
diff --git a/tests/shell/testcases/flowtable/0016name_based_hook_0 b/tests/shell/testcases/flowtable/0016name_based_hook_0
index 9a5559602715..19135b7e33cf 100755
--- a/tests/shell/testcases/flowtable/0016name_based_hook_0
+++ b/tests/shell/testcases/flowtable/0016name_based_hook_0
@@ -3,7 +3,7 @@
# NFT_TEST_REQUIRES(NFT_TEST_HAVE_ifname_based_hooks)
# NFT_TEST_REQUIRES(NFT_TEST_HAVE_list_hooks_flowtable_info)
-ftspec=' flowtable ip t ft '
+ftspec=' flowtable ip t ft'
$NFT add table t
$NFT add $ftspec '{ hook ingress priority 0; devices = { lo, foo* }; }'
$NFT list hooks netdev device lo | grep -q "$ftspec" || {
--
2.49.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2025-10-07 20:28 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-07 20:28 [PATCH nft] tests: shell: fix name based checks with CONFIG_NF_TABLES=y Florian Westphal
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).