summaryrefslogtreecommitdiffstats
path: root/tests/py/bridge/vlan.t.payload.netdev
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2023-09-28 23:27:55 +0200
committerFlorian Westphal <fw@strlen.de>2023-09-29 12:36:33 +0200
commit99ab1b8feb16741a83fb8b887bacae8fa07d29a2 (patch)
treec8b67d32aa10bac630c3a873b8128af873bf4e45 /tests/py/bridge/vlan.t.payload.netdev
parent15a7d710dc892c0e68f118ca3e6106c84b30a83b (diff)
rule: never merge across non-expression statements
The existing logic can merge across non-expression statements, if there is only one payload expression. Example: ether saddr 00:11:22:33:44:55 counter ether type 8021q is turned into counter ether saddr 00:11:22:33:44:55 ether type 8021q which isn't the same thing. Fix this up and add test cases for adjacent vlan and ip header fields. 'Counter' serves as a non-merge fence. Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'tests/py/bridge/vlan.t.payload.netdev')
-rw-r--r--tests/py/bridge/vlan.t.payload.netdev10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/py/bridge/vlan.t.payload.netdev b/tests/py/bridge/vlan.t.payload.netdev
index 1018d4c6..f3341947 100644
--- a/tests/py/bridge/vlan.t.payload.netdev
+++ b/tests/py/bridge/vlan.t.payload.netdev
@@ -356,3 +356,13 @@ netdev test-netdev ingress
[ payload load 2b @ link header + 14 => reg 10 ]
[ bitwise reg 10 = ( reg 10 & 0x0000ff0f ) ^ 0x00000000 ]
[ lookup reg 1 set __set%d ]
+
+# ether saddr 00:11:22:33:44:55 counter ether type 8021q
+bridge test-bridge input
+ [ meta load iiftype => reg 1 ]
+ [ cmp eq reg 1 0x00000001 ]
+ [ payload load 6b @ link header + 6 => reg 1 ]
+ [ cmp eq reg 1 0x33221100 0x00005544 ]
+ [ counter pkts 0 bytes 0 ]
+ [ payload load 2b @ link header + 12 => reg 1 ]
+ [ cmp eq reg 1 0x00000081 ]