On 3 Sep 2026, at 16:37, Eli Britstein wrote:
> On 03/09/2026 15:47, Eelco Chaudron wrote:
>> External email: Use caution opening links or attachments
>>
>>
>> Update test cases in system-traffic.at to use the --names flag with
>> ovs-appctl dpctl/dump-flows and ovs-appctl ofproto/trace, replacing
>> numeric port identifiers with their named counterparts (e.g., port 2
>> becomes ovs-p0, port 1 becomes br0/ovs-p1). This makes test output
>> more readable and avoids problems where port numbers vary. This for
>> example happens with specific hardware offload implementations.
>
> Double spaces after '.'.
I guess we only enforce this for comments, not commit messages, but maybe we
should. Will fix it in v2.
> Do we want to make this change broader? there are many places that don't use
> --names with dump-flows/trace.
I thought I checked all other invocations, but I missed one test case. Will
fix this in v2.
//Eelco
>>
>> Signed-off-by: Eelco Chaudron <[email protected]>
>> ---
>> tests/system-dpdk-macros.at | 10 ++++++++++
>> tests/system-dpdk-offloads-macros.at | 9 ---------
>> tests/system-traffic.at | 24 ++++++++++++------------
>> 3 files changed, 22 insertions(+), 21 deletions(-)
>>
>> diff --git a/tests/system-dpdk-macros.at b/tests/system-dpdk-macros.at
>> index 3f0df2d9b..9575c90e9 100644
>> --- a/tests/system-dpdk-macros.at
>> +++ b/tests/system-dpdk-macros.at
>> @@ -200,3 +200,13 @@ m4_define([CONFIGURE_VETH_OFFLOADS],
>> [AT_CHECK([ethtool -K $1 tx off], [0], [ignore], [ignore])
>> AT_CHECK([ethtool -K $1 txvlan off], [0], [ignore], [ignore])]
>> )
>> +
>> +
>> +# DUMP_DP_IP_CLEAN_SORTED()
>> +#
>> +# Clean up and sort the ovs-appctl dpctl/dump-flows output for comparing.
>> +#
>> +m4_define([DUMP_DP_IP_CLEAN_SORTED], [dnl
>> + grep 'eth_type(0x0800)' \
>> + | sed -e
>> 's/eth(src=[[a-z0-9:]]*,dst=[[a-z0-9:]]*)/eth(macs)/;s/recirc_id(0),//' \
>> + | strip_used | strip_ptype | sort])
>> diff --git a/tests/system-dpdk-offloads-macros.at
>> b/tests/system-dpdk-offloads-macros.at
>> index 3c6cce1a8..8004966df 100644
>> --- a/tests/system-dpdk-offloads-macros.at
>> +++ b/tests/system-dpdk-offloads-macros.at
>> @@ -135,12 +135,3 @@ m4_define([ADD_VF],
>> ]
>> )
>> m4_define([ADD_VETH], [ADD_VF($@)])
>> -
>> -# DUMP_DP_IP_CLEAN_SORTED()
>> -#
>> -# Clean up and sort the ovs-dpctl dump-flow output for comparing.
>> -#
>> -m4_define([DUMP_DP_IP_CLEAN_SORTED], [dnl
>> - grep 'eth_type(0x0800)' \
>> - | sed -e
>> 's/eth(src=[[a-z0-9:]]*,dst=[[a-z0-9:]]*)/eth(macs)/;s/recirc_id(0),//' \
>> - | strip_used | strip_ptype | sort])
>> diff --git a/tests/system-traffic.at b/tests/system-traffic.at
>> index 6550f90d9..fddcce88b 100644
>> --- a/tests/system-traffic.at
>> +++ b/tests/system-traffic.at
>> @@ -2207,9 +2207,9 @@ dnl SLOW_ACTION test1: check datapatch actions
>> AT_CHECK([ovs-ofctl del-flows br0])
>> AT_CHECK([ovs-ofctl add-flows br0 flows.txt])
>>
>> -AT_CHECK([ovs-appctl ofproto/trace br0
>> "in_port=1,dl_type=0x800,dl_src=e6:66:c1:11:11:11,dl_dst=e6:66:c1:22:22:22,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_proto=6,tp_src=8,tp_dst=9"],
>> [0], [stdout])
>> +AT_CHECK([ovs-appctl ofproto/trace --names br0
>> "in_port=1,dl_type=0x800,dl_src=e6:66:c1:11:11:11,dl_dst=e6:66:c1:22:22:22,nw_src=192.168.0.1,nw_dst=192.168.0.2,nw_proto=6,tp_src=8,tp_dst=9"],
>> [0], [stdout])
>> AT_CHECK([tail -3 stdout], [0],
>> -[Datapath actions:
>> trunc(100),3,5,trunc(100),3,trunc(100),5,3,trunc(200),5,trunc(65535),3
>> +[Datapath actions:
>> trunc(100),ovs-p1,ovs-p2,trunc(100),ovs-p1,trunc(100),ovs-p2,ovs-p1,trunc(200),ovs-p2,trunc(65535),ovs-p1
>> This flow is handled by the userspace slow path because it:
>> - Uses action(s) not supported by datapath.
>> ])
>> @@ -2553,10 +2553,10 @@ AT_CHECK([ovs-ofctl add-flows --bundle br0
>> flows.txt])
>> dnl Generate some traffic.
>> NS_CHECK_EXEC([at_ns0], [ping -q -c 10 -i 0.1 -w 2 10.1.1.2], [1],
>> [ignore])
>>
>> -OVS_WAIT_UNTIL_EQUAL([ovs-appctl dpctl/dump-flows | grep "eth_type(0x0800)"
>> | dnl
>> - strip_ptype | strip_eth | strip_recirc | strip_stats
>> | dnl
>> - strip_used | sort], [dnl
>> -recirc_id(<recirc>),in_port(2),eth_type(0x0800),ipv4(frag=no), packets:0,
>> bytes:0, used:0.0s, actions:drop])
>> +OVS_WAIT_UNTIL_EQUAL([ovs-appctl dpctl/dump-flows --names | dnl
>> + grep "eth_type(0x0800)" | strip_ptype | strip_eth |
>> dnl
>> + strip_recirc | strip_stats | strip_used | sort], [dnl
>> +recirc_id(<recirc>),in_port(ovs-p0),eth_type(0x0800),ipv4(frag=no),
>> packets:0, bytes:0, used:0.0s, actions:drop])
>>
>> OVS_TRAFFIC_VSWITCHD_STOP(["/WARN/d"])
>> AT_CLEANUP
>> @@ -2708,11 +2708,11 @@ NS_CHECK_EXEC([at_ns0], [$PYTHON3 $srcdir/sendpkt.py
>> p0 \
>> $(ovs-ofctl compose-packet --bare
>> 'ND_NS_PKT,nd_target=2001::1:0:392')],
>> [0], [ignore])
>>
>> -AT_CHECK([ovs-appctl dpctl/dump-flows | strip_stats | strip_used | dnl
>> +AT_CHECK([ovs-appctl dpctl/dump-flows --names | strip_stats | strip_used |
>> dnl
>> strip_key32 | strip_ptype | strip_eth | strip_recirc | dnl
>> grep ",nd" | sort], [0], [dnl
>> -recirc_id(<recirc>),in_port(2),eth(src=36:b1:ee:7c:01:03,dst=36:b1:ee:7c:01:02),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=2001::1:0:392),
>> packets:0, bytes:0, used:never, actions:1,3
>> -recirc_id(<recirc>),in_port(2),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=3000::1),
>> packets:0, bytes:0, used:never, actions:drop
>> +recirc_id(<recirc>),in_port(ovs-p0),eth(src=36:b1:ee:7c:01:03,dst=36:b1:ee:7c:01:02),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=2001::1:0:392),
>> packets:0, bytes:0, used:never, actions:br0,ovs-p1
>> +recirc_id(<recirc>),in_port(ovs-p0),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=3000::1),
>> packets:0, bytes:0, used:never, actions:drop
>> ])
>>
>> OVS_WAIT_UNTIL([ovs-appctl dpctl/dump-flows | grep ",nd" | wc -l | grep -E
>> ^0])
>> @@ -2727,11 +2727,11 @@ NS_CHECK_EXEC([at_ns0], [$PYTHON3 $srcdir/sendpkt.py
>> p0 \
>> $(ovs-ofctl compose-packet --bare 'ND_NS_PKT,nd_target=3000::1')],
>> [0], [ignore])
>>
>> -AT_CHECK([ovs-appctl dpctl/dump-flows | strip_stats | strip_used | dnl
>> +AT_CHECK([ovs-appctl dpctl/dump-flows --names | strip_stats | strip_used |
>> dnl
>> strip_key32 | strip_ptype | strip_eth | strip_recirc | dnl
>> grep ",nd" | sort], [0], [dnl
>> -recirc_id(<recirc>),in_port(2),eth(src=36:b1:ee:7c:01:03,dst=36:b1:ee:7c:01:02),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=2001::1:0:392),
>> packets:0, bytes:0, used:never, actions:1,3
>> -recirc_id(<recirc>),in_port(2),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=3000::1),
>> packets:0, bytes:0, used:never, actions:drop
>> +recirc_id(<recirc>),in_port(ovs-p0),eth(src=36:b1:ee:7c:01:03,dst=36:b1:ee:7c:01:02),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=2001::1:0:392),
>> packets:0, bytes:0, used:never, actions:br0,ovs-p1
>> +recirc_id(<recirc>),in_port(ovs-p0),eth_type(0x86dd),ipv6(proto=58,frag=no),icmpv6(type=136),nd(target=3000::1),
>> packets:0, bytes:0, used:never, actions:drop
>> ])
>>
>> OVS_TRAFFIC_VSWITCHD_STOP
>> --
>> 2.52.0
_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev