CSIT-1142 Change thread perf test TAGs
[csit.git] / tests / vpp / perf / vm_vhost / 10ge2p1x710-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrpdrdisc.robot
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Resource | resources/libraries/robot/performance/performance_setup.robot
16 | Library | resources.libraries.python.QemuUtils
17 | ...
18 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | PERFTEST | HW_ENV | NDRPDRDISC
19 | ... | NIC_Intel-X710 | DOT1Q | L2BDMACLRN | BASE | VHOST | VM
20 | ... | VHOST_1024 | LBOND | LBOND_DPDK | LBOND_MODE_XOR | LBOND_LB_L34
21 | ...
22 | Suite Setup | Set up 3-node performance topology with DUT's NIC model
23 | ... | L2 | Intel-X710
24 | Suite Teardown | Tear down 3-node performance topology
25 | ...
26 | Test Setup | Set up performance test
27 | Test Teardown | Tear down performance test with vhost and VM with dpdk-testpmd
28 | ... | ${min_rate}pps | ${framesize} | ${traffic_profile}
29 | ... | dut1_node=${dut1} | dut1_vm_refs=${dut1_vm_refs}
30 | ... | dut2_node=${dut2} | dut2_vm_refs=${dut2_vm_refs}
31 | ...
32 | Documentation | *RFC2544: Packet throughput L2BD test cases with vhost and
33 | ... | dpdk link bonding*
34 | ...
35 | ... | *[Top] Network Topologies:* TG-DUT1-DUT2-TG 3-node circular topology
36 | ... | with single links between nodes.
37 | ... | *[Enc] Packet Encapsulations:* Eth-IPv4 for L2 switching of IPv4. 802.1q
38 | ... | tagging is applied on link between DUT1 and DUT2.
39 | ... | *[Cfg] DUT configuration:* DUT1 and DUT2 are configured with DPDK
40 | ... | link bonding (mode XOR, transmit policy l34) on link between DUT1 and
41 | ... | DUT2 and L2 bridge-domain with MAC learning enabled. Qemu Guest is
42 | ... | connected to VPP via vhost-user interfaces. Guest is running DPDK
43 | ... | testpmd interconnecting vhost-user interfaces using 5 cores pinned to
44 | ... | cpus 5-9 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M
45 | ... | hugepages), 5 cores (1 main core and 4 cores dedicated for io),
46 | ... | forwarding mode is set to io, rxd/txd=1024, burst=64. DUT1, DUT2 are
47 | ... | tested with 2p10GE NIC X710 Fortville by Intel.
48 | ... | *[Ver] TG verification:* TG finds and reports throughput NDR (Non Drop
49 | ... | Rate) with zero packet loss tolerance or throughput PDR (Partial Drop
50 | ... | Rate) with non-zero packet loss tolerance (LT) expressed in percentage
51 | ... | of packets transmitted. NDR and PDR are discovered for different
52 | ... | Ethernet L2 frame sizes using either binary search or linear search
53 | ... | algorithms with configured starting rate and final step that determines
54 | ... | throughput measurement resolution. Test packets are generated by TG on
55 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups
56 | ... | (flow-group per direction, 253 flows per flow-group) with all packets
57 | ... | containing Ethernet header, IPv4 header with IP protocol=61 and static
58 | ... | payload. MAC addresses are matching MAC addresses of the TG node
59 | ... | interfaces.
60 | ... | *[Ref] Applicable standard specifications:* RFC2544.
61
62 *** Variables ***
63 | ${dut1_eth_bond_if1}= | eth_bond1
64 | ${dut1_eth_bond_if1_name}= | BondEthernet0
65 | ${dut2_eth_bond_if1}= | eth_bond1
66 | ${dut2_eth_bond_if1_name}= | BondEthernet0
67 | ${perf_qemu_qsz}= | 1024
68 | ${subid}= | 10
69 | ${tag_rewrite}= | pop-1
70 | ${vlan_overhead}= | ${4}
71 # X710 bandwidth limit
72 | ${s_limit}= | ${10000000000}
73 # Socket names
74 | ${bd_id1}= | 1
75 | ${bd_id2}= | 2
76 | ${sock1}= | /tmp/sock-1-${bd_id1}
77 | ${sock2}= | /tmp/sock-1-${bd_id2}
78 # Traffic profile:
79 | ${traffic_profile}= | trex-sl-3n-ethip4-ip4src254
80
81 *** Keywords ***
82 | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
83 | | [Documentation]
84 | | ... | [Cfg] DUT runs L2BD switching config with ${wt} thread, ${wt} phy\
85 | | ... | core, ${rxq} receive queue per NIC port.
86 | | ... | [Ver] Discover NDR or PDR for ${framesize} frames using xxx\
87 | | ... | trial throughput test.
88 | | ...
89 | | [Arguments] | ${wt} | ${rxq} | ${framesize} | ${min_rate} | ${search_type}
90 | | ...
91 | | # Test Variables required for test and test teardown
92 | | Set Test Variable | ${framesize}
93 | | Set Test Variable | ${min_rate}
94 | | ${get_framesize}= | Get Frame Size | ${framesize}
95 | | ${max_rate}= | Calculate pps | ${s_limit}
96 | | ... | ${get_framesize + ${vlan_overhead}}
97 | | ${binary_min}= | Set Variable | ${min_rate}
98 | | ${binary_max}= | Set Variable | ${max_rate}
99 | | ${threshold}= | Set Variable | ${min_rate}
100 | | ${dut1_vm_refs}= | Create Dictionary
101 | | ${dut2_vm_refs}= | Create Dictionary
102 | | Set Test Variable | ${dut1_vm_refs}
103 | | Set Test Variable | ${dut2_vm_refs}
104 | | ${jumbo_frames}= | Set Variable If
105 | | ... | ${get_framesize + ${vlan_overhead}} < ${1522} | ${False} | ${True}
106 | | ...
107 | | Given Add '${wt}' worker threads and '${rxq}' rxqueues in 3-node single-link circular topology
108 | | And Add PCI devices to all DUTs
109 | | And Add VLAN Strip Offload switch off between DUTs in 3-node single link topology
110 | | And Add DPDK bonded Ethernet interfaces to DUTs in 3-node single link topology
111 | | And Run Keyword If | ${get_framesize + ${vlan_overhead}} < ${1522}
112 | | ... | Add no multi seg to all DUTs
113 | | And Apply startup configuration on all VPP DUTs
114 | | And Add DPDK bonded ethernet interfaces to topology file in 3-node single link topology
115 | | When Initialize L2 bridge domains with Vhost-User and VLAN with DPDK link bonding in a 3-node circular topology
116 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2} | ${subid}
117 | | ... | ${tag_rewrite}
118 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
119 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
120 | | ... | jumbo_frames=${jumbo_frames}
121 | | And Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
122 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
123 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
124 | | ... | jumbo_frames=${jumbo_frames}
125 | | And Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
126 | | Then Run Keyword If | '${search_type}' == 'NDR'
127 | | ... | Find NDR using binary search and pps
128 | | ... | ${framesize} | ${binary_min} | ${binary_max} | ${traffic_profile}
129 | | ... | ${min_rate} | ${max_rate} | ${threshold}
130 | | ... | ELSE IF | '${search_type}' == 'PDR'
131 | | ... | Find PDR using binary search and pps
132 | | ... | ${framesize} | ${binary_min} | ${binary_max} | ${traffic_profile}
133 | | ... | ${min_rate} | ${max_rate} | ${threshold}
134 | | ... | ${perf_pdr_loss_acceptance} | ${perf_pdr_loss_acceptance_type}
135
136 *** Test Cases ***
137 | tc01-64B-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
138 | | [Documentation]
139 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
140 | | ... | 1 receive queue per NIC port.
141 | | ... | [Ver] Find NDR for 64 Byte frames using binary search start at 10GE\
142 | | ... | linerate, step 10kpps.
143 | | ...
144 | | [Tags] | 64B | 1C | NDRDISC
145 | | ...
146 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
147 | | wt=1 | rxq=1 | framesize=${64} | min_rate=${10000} | search_type=NDR
148
149 | tc02-64B-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
150 | | [Documentation]
151 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
152 | | ... | 1 receive queue per NIC port.
153 | | ... | [Ver] Find PDR for 64 Byte frames using binary search start at 10GE\
154 | | ... | linerate, step 10kpps, LT=0.5%.
155 | | ...
156 | | [Tags] | 64B | 1C | PDRDISC | SKIP_PATCH
157 | | ...
158 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
159 | | wt=1 | rxq=1 | framesize=${64} | min_rate=${10000} | search_type=PDR
160
161 | tc03-1518B-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
162 | | [Documentation]
163 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
164 | | ... | 1 receive queue per NIC port.
165 | | ... | [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE\
166 | | ... | linerate, step 10kpps.
167 | | ...
168 | | [Tags] | 1518B | 1C | NDRDISC
169 | | ...
170 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
171 | | wt=1 | rxq=1 | framesize=${1518} | min_rate=${10000} | search_type=NDR
172
173 | tc04-1518B-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
174 | | [Documentation]
175 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
176 | | ... | 1 receive queue per NIC port.
177 | | ... | [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE\
178 | | ... | linerate, step 10kpps, LT=0.5%.
179 | | ...
180 | | [Tags] | 1518B | 1C | PDRDISC | SKIP_PATCH
181 | | ...
182 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
183 | | wt=1 | rxq=1 | framesize=${1518} | min_rate=${10000} | search_type=PDR
184
185 | tc05-9000B-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
186 | | [Documentation]
187 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
188 | | ... | 1 receive queue per NIC port.
189 | | ... | [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE\
190 | | ... | linerate, step 10kpps.
191 | | ...
192 | | [Tags] | 9000B | 1C | NDRDISC
193 | | ...
194 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
195 | | wt=1 | rxq=1 | framesize=${9000} | min_rate=${10000} | search_type=NDR
196
197 | tc06-9000B-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
198 | | [Documentation]
199 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
200 | | ... | 1 receive queue per NIC port.
201 | | ... | [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE\
202 | | ... | linerate, step 10kpps, LT=0.5%.
203 | | ...
204 | | [Tags] | 9000B | 1C | PDRDISC | SKIP_PATCH
205 | | ...
206 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
207 | | wt=1 | rxq=1 | framesize=${9000} | min_rate=${10000} | search_type=PDR
208
209 | tc07-IMIX-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
210 | | [Documentation]
211 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
212 | | ... | 1 receive queue per NIC port.
213 | | ... | [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at\
214 | | ... | 10GE linerate, step 10kpps.
215 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
216 | | ...
217 | | [Tags] | IMIX | 1C | NDRDISC
218 | | ...
219 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
220 | | wt=1 | rxq=1 | framesize=IMIX_v4_1 | min_rate=${10000} | search_type=NDR
221
222 | tc08-IMIX-1t1c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
223 | | [Documentation]
224 | | ... | [Cfg] DUT runs L2BD switching config with 1 phy core,\
225 | | ... | 1 receive queue per NIC port.
226 | | ... | [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at\
227 | | ... | 10GE linerate, step 10kpps, LT=0.5%.
228 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
229 | | ...
230 | | [Tags] | IMIX | 1C | PDRDISC | SKIP_PATCH
231 | | ...
232 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
233 | | wt=1 | rxq=1 | framesize=IMIX_v4_1 | min_rate=${10000} | search_type=PDR
234
235 | tc09-64B-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
236 | | [Documentation]
237 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
238 | | ... | 1 receive queue per NIC port.
239 | | ... | [Ver] Find NDR for 64 Byte frames using binary search start at 10GE\
240 | | ... | linerate, step 10kpps.
241 | | ...
242 | | [Tags] | 64B | 2C | NDRDISC
243 | | ...
244 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
245 | | wt=2 | rxq=1 | framesize=${64} | min_rate=${10000} | search_type=NDR
246
247 | tc10-64B-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
248 | | [Documentation]
249 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
250 | | ... | 1 receive queue per NIC port.
251 | | ... | [Ver] Find PDR for 64 Byte frames using binary search start at 10GE\
252 | | ... | linerate, step 10kpps, LT=0.5%.
253 | | ...
254 | | [Tags] | 64B | 2C | PDRDISC | SKIP_PATCH
255 | | ...
256 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
257 | | wt=2 | rxq=1 | framesize=${64} | min_rate=${10000} | search_type=PDR
258
259 | tc11-1518B-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
260 | | [Documentation]
261 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
262 | | ... | 1 receive queue per NIC port.
263 | | ... | [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE\
264 | | ... | linerate, step 10kpps.
265 | | ...
266 | | [Tags] | 1518B | 2C | NDRDISC | SKIP_PATCH
267 | | ...
268 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
269 | | wt=2 | rxq=1 | framesize=${1518} | min_rate=${10000} | search_type=NDR
270
271 | tc12-1518B-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
272 | | [Documentation]
273 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
274 | | ... | 1 receive queue per NIC port.
275 | | ... | [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE\
276 | | ... | linerate, step 10kpps, LT=0.5%.
277 | | ...
278 | | [Tags] | 1518B | 2C | PDRDISC | SKIP_PATCH
279 | | ...
280 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
281 | | wt=2 | rxq=1 | framesize=${1518} | min_rate=${10000} | search_type=PDR
282
283 | tc13-9000B-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
284 | | [Documentation]
285 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
286 | | ... | 1 receive queue per NIC port.
287 | | ... | [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE\
288 | | ... | linerate, step 10kpps.
289 | | ...
290 | | [Tags] | 9000B | 2C | NDRDISC | SKIP_PATCH
291 | | ...
292 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
293 | | wt=2 | rxq=1 | framesize=${9000} | min_rate=${10000} | search_type=NDR
294
295 | tc14-9000B-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
296 | | [Documentation]
297 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
298 | | ... | 1 receive queue per NIC port.
299 | | ... | [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE\
300 | | ... | linerate, step 10kpps, LT=0.5%.
301 | | ...
302 | | [Tags] | 9000B | 2C | PDRDISC | SKIP_PATCH
303 | | ...
304 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
305 | | wt=2 | rxq=1 | framesize=${9000} | min_rate=${10000} | search_type=PDR
306
307 | tc15-IMIX-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
308 | | [Documentation]
309 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
310 | | ... | 1 receive queue per NIC port.
311 | | ... | [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at\
312 | | ... | 10GE linerate, step 10kpps.
313 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
314 | | ...
315 | | [Tags] | IMIX | 2C | NDRDISC | SKIP_PATCH
316 | | ...
317 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
318 | | wt=2 | rxq=1 | framesize=IMIX_v4_1 | min_rate=${10000} | search_type=NDR
319
320 | tc16-IMIX-2t2c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
321 | | [Documentation]
322 | | ... | [Cfg] DUT runs L2BD switching config with 2 phy cores,\
323 | | ... | 1 receive queue per NIC port.
324 | | ... | [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at\
325 | | ... | 10GE linerate, step 10kpps.
326 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
327 | | ...
328 | | [Tags] | IMIX | 2C | PDRDISC | SKIP_PATCH
329 | | ...
330 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
331 | | wt=2 | rxq=1 | framesize=IMIX_v4_1 | min_rate=${10000} | search_type=PDR
332
333 | tc17-64B-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
334 | | [Documentation]
335 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
336 | | ... | 2 receive queues per NIC port.
337 | | ... | [Ver] Find NDR for 64 Byte frames using binary search start at 10GE\
338 | | ... | linerate, step 10kpps.
339 | | ...
340 | | [Tags] | 64B | 4C | NDRDISC
341 | | ...
342 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
343 | | wt=4 | rxq=2 | framesize=${64} | min_rate=${10000} | search_type=NDR
344
345 | tc18-64B-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
346 | | [Documentation]
347 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
348 | | ... | 2 receive queues per NIC port.
349 | | ... | [Ver] Find PDR for 64 Byte frames using binary search start at 10GE\
350 | | ... | linerate, step 10kpps, LT=0.5%.
351 | | ...
352 | | [Tags] | 64B | 4C | PDRDISC | SKIP_PATCH
353 | | ...
354 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
355 | | wt=4 | rxq=2 | framesize=${64} | min_rate=${10000} | search_type=PDR
356
357 | tc19-1518B-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
358 | | [Documentation]
359 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
360 | | ... | 2 receive queues per NIC port.
361 | | ... | [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE\
362 | | ... | linerate, step 10kpps.
363 | | ...
364 | | [Tags] | 1518B | 4C | NDRDISC | SKIP_PATCH
365 | | ...
366 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
367 | | wt=4 | rxq=2 | framesize=${1518} | min_rate=${10000} | search_type=NDR
368
369 | tc20-1518B-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
370 | | [Documentation]
371 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
372 | | ... | 2 receive queues per NIC port.
373 | | ... | [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE\
374 | | ... | linerate, step 10kpps, LT=0.5%.
375 | | ...
376 | | [Tags] | 1518B | 4C | PDRDISC | SKIP_PATCH
377 | | ...
378 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
379 | | wt=4 | rxq=2 | framesize=${1518} | min_rate=${10000} | search_type=PDR
380
381 | tc21-9000B-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
382 | | [Documentation]
383 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
384 | | ... | 2 receive queues per NIC port.
385 | | ... | [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE\
386 | | ... | linerate, step 10kpps.
387 | | ...
388 | | [Tags] | 9000B | 4C | NDRDISC | SKIP_PATCH
389 | | ...
390 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
391 | | wt=4 | rxq=2 | framesize=${9000} | min_rate=${10000} | search_type=NDR
392
393 | tc22-9000B-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
394 | | [Documentation]
395 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
396 | | ... | 2 receive queues per NIC port.
397 | | ... | [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE\
398 | | ... | linerate, step 10kpps, LT=0.5%.
399 | | ...
400 | | [Tags] | 9000B | 4C | PDRDISC | SKIP_PATCH
401 | | ...
402 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
403 | | wt=4 | rxq=2 | framesize=${9000} | min_rate=${10000} | search_type=PDR
404
405 | tc23-IMIX-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
406 | | [Documentation]
407 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
408 | | ... | 2 receive queues per NIC port.
409 | | ... | [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at\
410 | | ... | 10GE linerate, step 10kpps.
411 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
412 | | ...
413 | | [Tags] | IMIX | 4C | NDRDISC | SKIP_PATCH
414 | | ...
415 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
416 | | wt=4 | rxq=2 | framesize=IMIX_v4_1 | min_rate=${10000} | search_type=NDR
417
418 | tc24-IMIX-4t4c-1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
419 | | [Documentation]
420 | | ... | [Cfg] DUT runs L2BD switching config with 4 phy cores,\
421 | | ... | 2 receive queues per NIC port.
422 | | ... | [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at\
423 | | ... | 10GE linerate, step 10kpps, LT=0.5%.
424 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
425 | | ...
426 | | [Tags] | IMIX | 4C | PDRDISC | SKIP_PATCH
427 | | ...
428 | | [Template] | Discover NDR or PDR for 1lbdpdk-dot1q-l2bdbasemaclrn-eth-2vhostvr1024-1vm
429 | | wt=4 | rxq=2 | framesize=IMIX_v4_1 | min_rate=${10000} | search_type=PDR