summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2023-09-26 21:53:33 +0200
committerPhil Sutter <phil@nwl.cc>2023-09-26 21:57:37 +0200
commit53992721feb1dbc20f6a31d8f8bd74cca23fbcce (patch)
tree85c23b4693d66a9b6efcccdc6741cd33c3fcaf99
parent3d0ce3c19d319a5aae806b617905cfa1ee7f87f4 (diff)
tests: shell: features: Fix table owner flag check
The keyword is "flags", not "flag". Resulted in a false-negative: features/table_flag_owner.nft:4:2-5: Error: syntax error, unexpected string flag owner; ^^^^ Fixes: 10373f0936cd3 ("tests: shell: skip flowtable-uaf if we lack table owner support") Signed-off-by: Phil Sutter <phil@nwl.cc>
-rw-r--r--tests/shell/features/table_flag_owner.nft2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/shell/features/table_flag_owner.nft b/tests/shell/features/table_flag_owner.nft
index 6e6f608a..aef122a0 100644
--- a/tests/shell/features/table_flag_owner.nft
+++ b/tests/shell/features/table_flag_owner.nft
@@ -1,5 +1,5 @@
# 6001a930ce03 ("netfilter: nftables: introduce table ownership")
# v5.12-rc1~200^2~6^2
table t {
- flag owner;
+ flags owner;
}