CSIT-604: Bootstrap file for vpp-csit-verify-master-centos7-nightly
[csit.git] / dpdk-tests / perf / 10ge2p1x520-eth-l2xcbase-testpmd-ndrpdrdisc.robot
1 # Copyright (c) 2017 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_setup.robot
16 | Resource | resources/libraries/robot/DPDK/default.robot
17 | Library | resources.libraries.python.topology.Topology
18 | Library | resources.libraries.python.NodePath
19 | Library | resources.libraries.python.InterfaceUtil
20 | Library | resources.libraries.python.DPDK.DPDKTools
21 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | HW_ENV | PERFTEST | NDRPDRDISC | 1NUMA
22 | ... | NIC_Intel-X520-DA2 | DPDK | ETH | L2XCFWD | BASE
23 | Suite Setup | Set up DPDK 3-node performance topology with DUT's NIC model
24 | ... | L2 | Intel-X520-DA2
25 | Suite Teardown | Tear down DPDK 3-node performance topology
26 | Documentation | *RFC2544: Pkt throughput IPv4 routing test cases*
27 | ...
28 | ... | *[Top] Network Topologies:* TG-DUT1-DUT2-TG 3-node circular topology\
29 | ... | with single links between nodes.
30 | ... | *[Enc] Packet Encapsulations:* Eth-IPv4 for L2 frame forwarding.
31 | ... | *[Cfg] DUT configuration:* DUT1 and DUT2 run the DPDK testpmd\
32 | ... | application and use the io forwarding mode. DUT1 and DUT2 tested with\
33 | ... | 2p10GE NIC X520 Niantic by Intel.
34 | ... | *[Ver] TG verification:* TG finds and reports throughput NDR (Non Drop\
35 | ... | Rate) with zero packet loss tolerance or throughput PDR (Partial Drop\
36 | ... | Rate) with non-zero packet loss tolerance (LT) expressed in percentage\
37 | ... | of packets transmitted. NDR and PDR are discovered for different\
38 | ... | Ethernet L2 frame sizes using either binary search or linear search\
39 | ... | algorithms with configured starting rate and final step that determines\
40 | ... | throughput measurement resolution. Test packets are generated by TG on\
41 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups\
42 | ... | (flow-group per direction, 253 flows per flow-group) with all packets\
43 | ... | containing Ethernet header, IPv4 header with IP protocol=61 and static\
44 | ... | payload. MAC addresses are matching MAC addresses of the TG node\
45 | ... | interfaces.
46 | ... | *[Ref] Applicable standard specifications:* RFC2544.
47
48 *** Variables ***
49 # X520-DA2 bandwidth limit
50 | ${s_limit} | ${10000000000}
51 # Traffic profile:
52 | ${traffic_profile} | trex-sl-3n-ethip4-ip4src254
53
54 *** Test Cases ***
55 | tc01-64B-1t1c-eth-l2xcbase-testpmd-ndrdisc
56 | | [Documentation]
57 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
58 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 64 Byte frames\
59 | | ... | using binary search start at 10GE linerate, step 100kpps.
60 | | [Tags] | 1T1C | STHREAD | NDRDISC
61 | | ${framesize}= | Set Variable | ${64}
62 | | ${min_rate}= | Set Variable | ${100000}
63 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
64 | | ${binary_min}= | Set Variable | ${min_rate}
65 | | ${binary_max}= | Set Variable | ${max_rate}
66 | | ${threshold}= | Set Variable | ${min_rate}
67 | | Given Start L2FWD '1' worker threads and '1' rxqueues with jumbo frames 'no'
68 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
69 | | ... | ${binary_max} | ${traffic_profile}
70 | | ... | ${min_rate} | ${max_rate} | ${threshold}
71
72 | tc02-64B-1t1c-eth-l2xcbase-testpmd-pdrdisc
73 | | [Documentation]
74 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
75 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 64 Byte frames\
76 | | ... | using binary search start at 10GE linerate, step 100kpps, LT=0.5%.
77 | | [Tags] | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
78 | | ${framesize}= | Set Variable | ${64}
79 | | ${min_rate}= | Set Variable | ${100000}
80 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
81 | | ${binary_min}= | Set Variable | ${min_rate}
82 | | ${binary_max}= | Set Variable | ${max_rate}
83 | | ${threshold}= | Set Variable | ${min_rate}
84 | | Given Start L2FWD '1' worker threads and '1' rxqueues with jumbo frames 'no'
85 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
86 | | ... | ${binary_max} | ${traffic_profile}
87 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
88 | | ... | ${perf_pdr_loss_acceptance_type}
89
90 | tc03-1518B-1t1c-eth-l2xcbase-testpmd-ndrdisc
91 | | [Documentation]
92 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
93 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte frames\
94 | | ... | using binary search start at 10GE linerate, step 10kpps.
95 | | [Tags] | 1T1C | STHREAD | NDRDISC
96 | | ${framesize}= | Set Variable | ${1518}
97 | | ${min_rate}= | Set Variable | ${10000}
98 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
99 | | ${binary_min}= | Set Variable | ${min_rate}
100 | | ${binary_max}= | Set Variable | ${max_rate}
101 | | ${threshold}= | Set Variable | ${min_rate}
102 | | Given Start L2FWD '1' worker threads and '1' rxqueues with jumbo frames 'no'
103 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
104 | | ... | ${binary_max} | ${traffic_profile}
105 | | ... | ${min_rate} | ${max_rate} | ${threshold}
106
107 | tc04-1518B-1t1c-eth-l2xcbase-testpmd-pdrdisc
108 | | [Documentation]
109 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
110 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte frames\
111 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
112 | | [Tags] | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
113 | | ${framesize}= | Set Variable | ${1518}
114 | | ${min_rate}= | Set Variable | ${10000}
115 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
116 | | ${binary_min}= | Set Variable | ${min_rate}
117 | | ${binary_max}= | Set Variable | ${max_rate}
118 | | ${threshold}= | Set Variable | ${min_rate}
119 | | Given Start L2FWD '1' worker threads and '1' rxqueues with jumbo frames 'no'
120 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
121 | | ... | ${binary_max} | ${traffic_profile}
122 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
123 | | ... | ${perf_pdr_loss_acceptance_type}
124
125 | tc05-9000B-1t1c-eth-l2xcbase-testpmd-ndrdisc
126 | | [Documentation]
127 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
128 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 9000 Byte frames\
129 | | ... | using binary search start at 10GE linerate, step 10kpps.
130 | | [Tags] | 1T1C | STHREAD | NDRDISC
131 | | ${framesize}= | Set Variable | ${9000}
132 | | ${min_rate}= | Set Variable | ${10000}
133 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
134 | | ${binary_min}= | Set Variable | ${min_rate}
135 | | ${binary_max}= | Set Variable | ${max_rate}
136 | | ${threshold}= | Set Variable | ${min_rate}
137 | | Given Start L2FWD '1' worker threads and '1' rxqueues with jumbo frames 'yes'
138 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
139 | | ... | ${binary_max} | ${traffic_profile}
140 | | ... | ${min_rate} | ${max_rate} | ${threshold}
141
142 | tc06-9000B-1t1c-eth-l2xcbase-testpmd-pdrdisc
143 | | [Documentation]
144 | | ... | [Cfg] DUT runs L2 frame forwarding config with 1 thread, 1 phy core,\
145 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 9000 Byte frames\
146 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
147 | | [Tags] | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
148 | | ${framesize}= | Set Variable | ${9000}
149 | | ${min_rate}= | Set Variable | ${10000}
150 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
151 | | ${binary_min}= | Set Variable | ${min_rate}
152 | | ${binary_max}= | Set Variable | ${max_rate}
153 | | ${threshold}= | Set Variable | ${min_rate}
154 | | Given Start L2FWD '1' worker threads and '1' rxqueues with jumbo frames 'yes'
155 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
156 | | ... | ${binary_max} | ${traffic_profile}
157 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
158 | | ... | ${perf_pdr_loss_acceptance_type}
159
160 | tc07-64B-2t2c-eth-l2xcbase-testpmd-ndrdisc
161 | | [Documentation]
162 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
163 | | ... | cores, 1 receive queue per NIC port. [Ver] Find NDR for 64 Byte\
164 | | ... | frames using binary search start at 10GE linerate, step 100kpps.
165 | | [Tags] | 2T2C | MTHREAD | NDRDISC
166 | | ${framesize}= | Set Variable | ${64}
167 | | ${min_rate}= | Set Variable | ${100000}
168 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
169 | | ${binary_min}= | Set Variable | ${min_rate}
170 | | ${binary_max}= | Set Variable | ${max_rate}
171 | | ${threshold}= | Set Variable | ${min_rate}
172 | | Given Start L2FWD '2' worker threads and '1' rxqueues with jumbo frames 'no'
173 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
174 | | ... | ${binary_max} | ${traffic_profile}
175 | | ... | ${min_rate} | ${max_rate} | ${threshold}
176
177 | tc08-64B-2t2c-eth-l2xcbase-testpmd-pdrdisc
178 | | [Documentation]
179 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
180 | | ... | cores, 1 receive queue per NIC port. [Ver] Find PDR for 64 Byte\
181 | | ... | frames using binary search start at 10GE linerate, step 100kpps,\
182 | | ... | LT=0.5%.
183 | | [Tags] | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
184 | | ${framesize}= | Set Variable | ${64}
185 | | ${min_rate}= | Set Variable | ${100000}
186 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
187 | | ${binary_min}= | Set Variable | ${min_rate}
188 | | ${binary_max}= | Set Variable | ${max_rate}
189 | | ${threshold}= | Set Variable | ${min_rate}
190 | | Given Start L2FWD '2' worker threads and '1' rxqueues with jumbo frames 'no'
191 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
192 | | ... | ${binary_max} | ${traffic_profile}
193 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
194 | | ... | ${perf_pdr_loss_acceptance_type}
195
196 | tc09-1518B-2t2c-eth-l2xcbase-testpmd-ndrdisc
197 | | [Documentation]
198 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
199 | | ... | cores, 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte\
200 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
201 | | [Tags] | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
202 | | ${framesize}= | Set Variable | ${1518}
203 | | ${min_rate}= | Set Variable | ${10000}
204 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
205 | | ${binary_min}= | Set Variable | ${min_rate}
206 | | ${binary_max}= | Set Variable | ${max_rate}
207 | | ${threshold}= | Set Variable | ${min_rate}
208 | | Given Start L2FWD '2' worker threads and '1' rxqueues with jumbo frames 'no'
209 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
210 | | ... | ${binary_max} | ${traffic_profile}
211 | | ... | ${min_rate} | ${max_rate} | ${threshold}
212
213 | tc10-1518B-2t2c-eth-l2xcbase-testpmd-pdrdisc
214 | | [Documentation]
215 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
216 | | ... | cores, 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte\
217 | | ... | frames using binary search start at 10GE linerate, step 10kpps,\
218 | | ... | LT=0.5%.
219 | | [Tags] | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
220 | | ${framesize}= | Set Variable | ${1518}
221 | | ${min_rate}= | Set Variable | ${10000}
222 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
223 | | ${binary_min}= | Set Variable | ${min_rate}
224 | | ${binary_max}= | Set Variable | ${max_rate}
225 | | ${threshold}= | Set Variable | ${min_rate}
226 | | Given Start L2FWD '2' worker threads and '1' rxqueues with jumbo frames 'no'
227 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
228 | | ... | ${binary_max} | ${traffic_profile}
229 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
230 | | ... | ${perf_pdr_loss_acceptance_type}
231
232 | tc11-9000B-2t2c-eth-l2xcbase-testpmd-ndrdisc
233 | | [Documentation]
234 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
235 | | ... | cores, 1 receive queue per NIC port. [Ver] Find NDR for 9000 Byte\
236 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
237 | | [Tags] | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
238 | | ${framesize}= | Set Variable | ${9000}
239 | | ${min_rate}= | Set Variable | ${10000}
240 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
241 | | ${binary_min}= | Set Variable | ${min_rate}
242 | | ${binary_max}= | Set Variable | ${max_rate}
243 | | ${threshold}= | Set Variable | ${min_rate}
244 | | Given Start L2FWD '2' worker threads and '1' rxqueues with jumbo frames 'yes'
245 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
246 | | ... | ${binary_max} | ${traffic_profile}
247 | | ... | ${min_rate} | ${max_rate} | ${threshold}
248
249 | tc12-9000B-2t2c-eth-l2xcbase-testpmd-pdrdisc
250 | | [Documentation]
251 | | ... | [Cfg] DUT runs L2 frame forwarding config with 2 threads, 2 phy\
252 | | ... | cores, 1 receive queue per NIC port. [Ver] Find PDR for 9000 Byte\
253 | | ... | frames using binary search start at 10GE linerate, step 10kpps,\
254 | | ... | LT=0.5%.
255 | | [Tags] | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
256 | | ${framesize}= | Set Variable | ${9000}
257 | | ${min_rate}= | Set Variable | ${10000}
258 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
259 | | ${binary_min}= | Set Variable | ${min_rate}
260 | | ${binary_max}= | Set Variable | ${max_rate}
261 | | ${threshold}= | Set Variable | ${min_rate}
262 | | Given Start L2FWD '2' worker threads and '1' rxqueues with jumbo frames 'yes'
263 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
264 | | ... | ${binary_max} | ${traffic_profile}
265 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
266 | | ... | ${perf_pdr_loss_acceptance_type}
267
268 | tc13-64B-4t4c-eth-l2xcbase-testpmd-ndrdisc
269 | | [Documentation]
270 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
271 | | ... | cores, 2 receive queues per NIC port. [Ver] Find NDR for 64 Byte\
272 | | ... | frames using binary search start at 10GE linerate, step 100kpps.
273 | | [Tags] | 4T4C | MTHREAD | NDRDISC
274 | | ${framesize}= | Set Variable | ${64}
275 | | ${min_rate}= | Set Variable | ${100000}
276 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
277 | | ${binary_min}= | Set Variable | ${min_rate}
278 | | ${binary_max}= | Set Variable | ${max_rate}
279 | | ${threshold}= | Set Variable | ${min_rate}
280 | | Given Start L2FWD '4' worker threads and '2' rxqueues with jumbo frames 'no'
281 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
282 | | ... | ${binary_max} | ${traffic_profile}
283 | | ... | ${min_rate} | ${max_rate} | ${threshold}
284
285 | tc14-64B-4t4c-eth-l2xcbase-testpmd-pdrdisc
286 | | [Documentation]
287 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
288 | | ... | cores, 2 receive queues per NIC port. [Ver] Find PDR for 64 Byte\
289 | | ... | frames using binary search start at 10GE linerate, step 100kpps,\
290 | | ... | LT=0.5%.
291 | | [Tags] | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
292 | | ${framesize}= | Set Variable | ${64}
293 | | ${min_rate}= | Set Variable | ${100000}
294 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
295 | | ${binary_min}= | Set Variable | ${min_rate}
296 | | ${binary_max}= | Set Variable | ${max_rate}
297 | | ${threshold}= | Set Variable | ${min_rate}
298 | | Given Start L2FWD '4' worker threads and '2' rxqueues with jumbo frames 'no'
299 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
300 | | ... | ${binary_max} | ${traffic_profile}
301 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
302 | | ... | ${perf_pdr_loss_acceptance_type}
303
304 | tc15-1518B-4t4c-eth-l2xcbase-testpmd-ndrdisc
305 | | [Documentation]
306 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
307 | | ... | cores, 2 receive queues per NIC port. [Ver] Find NDR for 1518 Byte\
308 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
309 | | [Tags] | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
310 | | ${framesize}= | Set Variable | ${1518}
311 | | ${min_rate}= | Set Variable | ${10000}
312 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
313 | | ${binary_min}= | Set Variable | ${min_rate}
314 | | ${binary_max}= | Set Variable | ${max_rate}
315 | | ${threshold}= | Set Variable | ${min_rate}
316 | | Given Start L2FWD '4' worker threads and '2' rxqueues with jumbo frames 'no'
317 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
318 | | ... | ${binary_max} | ${traffic_profile}
319 | | ... | ${min_rate} | ${max_rate} | ${threshold}
320
321 | tc16-1518B-4t4c-eth-l2xcbase-testpmd-pdrdisc
322 | | [Documentation]
323 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
324 | | ... | cores, 2 receive queues per NIC port. [Ver] Find PDR for 1518 Byte\
325 | | ... | frames using binary search start at 10GE linerate, step 10kpps,\
326 | | ... | LT=0.5%.
327 | | [Tags] | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
328 | | ${framesize}= | Set Variable | ${1518}
329 | | ${min_rate}= | Set Variable | ${10000}
330 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
331 | | ${binary_min}= | Set Variable | ${min_rate}
332 | | ${binary_max}= | Set Variable | ${max_rate}
333 | | ${threshold}= | Set Variable | ${min_rate}
334 | | Given Start L2FWD '4' worker threads and '2' rxqueues with jumbo frames 'no'
335 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
336 | | ... | ${binary_max} | ${traffic_profile}
337 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
338 | | ... | ${perf_pdr_loss_acceptance_type}
339
340 | tc17-9000B-4t4c-eth-l2xcbase-testpmd-ndrdisc
341 | | [Documentation]
342 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
343 | | ... | cores, 2 receive queues per NIC port. [Ver] Find NDR for 9000 Byte\
344 | | ... | frames using binary search start at 10GE linerate, step 10kpps.
345 | | [Tags] | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
346 | | ${framesize}= | Set Variable | ${9000}
347 | | ${min_rate}= | Set Variable | ${10000}
348 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
349 | | ${binary_min}= | Set Variable | ${min_rate}
350 | | ${binary_max}= | Set Variable | ${max_rate}
351 | | ${threshold}= | Set Variable | ${min_rate}
352 | | Given Start L2FWD '4' worker threads and '2' rxqueues with jumbo frames 'yes'
353 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
354 | | ... | ${binary_max} | ${traffic_profile}
355 | | ... | ${min_rate} | ${max_rate} | ${threshold}
356
357 | tc18-9000B-4t4c-eth-l2xcbase-testpmd-pdrdisc
358 | | [Documentation]
359 | | ... | [Cfg] DUT runs L2 frame forwarding config with 4 threads, 4 phy\
360 | | ... | cores, 2 receive queues per NIC port. [Ver] Find PDR for 9000 Byte
361 | | ... | frames using binary search start at 10GE linerate, step 5kpps,\
362 | | ... | LT=0.5%.
363 | | [Tags] | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
364 | | ${framesize}= | Set Variable | ${9000}
365 | | ${min_rate}= | Set Variable | ${10000}
366 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize}
367 | | ${binary_min}= | Set Variable | ${min_rate}
368 | | ${binary_max}= | Set Variable | ${max_rate}
369 | | ${threshold}= | Set Variable | ${min_rate}
370 | | Given Start L2FWD '4' worker threads and '2' rxqueues with jumbo frames 'yes'
371 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
372 | | ... | ${binary_max} | ${traffic_profile}
373 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
374 | | ... | ${perf_pdr_loss_acceptance_type}