summaryrefslogtreecommitdiffstats
path: root/tests/shell/testcases/chains/dumps/0042chain_variable_0.nft
diff options
context:
space:
mode:
Diffstat (limited to 'tests/shell/testcases/chains/dumps/0042chain_variable_0.nft')
-rw-r--r--tests/shell/testcases/chains/dumps/0042chain_variable_0.nft15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/shell/testcases/chains/dumps/0042chain_variable_0.nft b/tests/shell/testcases/chains/dumps/0042chain_variable_0.nft
new file mode 100644
index 00000000..12931aad
--- /dev/null
+++ b/tests/shell/testcases/chains/dumps/0042chain_variable_0.nft
@@ -0,0 +1,15 @@
+table netdev filter1 {
+ chain Main_Ingress1 {
+ type filter hook ingress device "lo" priority -500; policy accept;
+ }
+}
+table netdev filter2 {
+ chain Main_Ingress2 {
+ type filter hook ingress devices = { dummy0, lo } priority -500; policy accept;
+ }
+}
+table netdev filter3 {
+ chain Main_Ingress3 {
+ type filter hook ingress devices = { dummy0, lo } priority -500; policy accept;
+ }
+}