CSIT-618 CSIT rls1707 Report - Update I
[csit.git] / tests / vpp / perf / vm_vhost / 40ge2p1xl710-eth-l2bdbasemaclrn-eth-2vhostvr1024-1vm-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/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-XL710 | ETH | L2BDMACLRN | BASE | VHOST | VM | VHOST_1024
20 | ...
21 | Suite Setup | Set up 3-node performance topology with DUT's NIC model
22 | ... | L2 | Intel-XL710
23 | Suite Teardown | Tear down 3-node performance topology
24 | ...
25 | Test Setup | Set up performance test
26 | Test Teardown | Tear down performance test with vhost and VM with dpdk-testpmd
27 | ... | ${min_rate}pps | ${framesize} | ${traffic_profile}
28 | ... | dut1_node=${dut1} | dut1_vm_refs=${dut1_vm_refs}
29 | ... | dut2_node=${dut2} | dut2_vm_refs=${dut2_vm_refs}
30 | ...
31 | Documentation | *RFC2544: Packet throughput L2BD test cases with vhost*
32 | ...
33 | ... | *[Top] Network Topologies:* TG-DUT1-DUT2-TG 3-node circular topology
34 | ... | with single links between nodes.
35 | ... | *[Enc] Packet Encapsulations:* Eth-IPv4 for L2 switching of IPv4.
36 | ... | *[Cfg] DUT configuration:* DUT1 and DUT2 are configured with L2 bridge-
37 | ... | domain and MAC learning enabled. Qemu Guest is connected to VPP via
38 | ... | vhost-user interfaces. Guest is running DPDK testpmd interconnecting
39 | ... | vhost-user interfaces using 5 cores pinned to cpus on NUMA1 and 2048M
40 | ... | memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores
41 | ... | (1 main core and 4 cores dedicated for io), forwarding mode is set to
42 | ... | io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p40GE NIC XL710
43 | ... | by Intel.
44 | ... | *[Ver] TG verification:* TG finds and reports throughput NDR (Non Drop
45 | ... | Rate) with zero packet loss tolerance or throughput PDR (Partial Drop
46 | ... | Rate) with non-zero packet loss tolerance (LT) expressed in percentage
47 | ... | of packets transmitted. NDR and PDR are discovered for different
48 | ... | Ethernet L2 frame sizes using either binary search or linear search
49 | ... | algorithms with configured starting rate and final step that determines
50 | ... | throughput measurement resolution. Test packets are generated by TG on
51 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups
52 | ... | (flow-group per direction, 253 flows per flow-group) with all packets
53 | ... | containing Ethernet header, IPv4 header with IP protocol=61 and static
54 | ... | payload. MAC addresses are matching MAC addresses of the TG node
55 | ... | interfaces.
56 | ... | *[Ref] Applicable standard specifications:* RFC2544.
57
58 *** Variables ***
59 # XL710-DA2 bandwidth limit ~49Gbps/2=24.5Gbps
60 | ${s_24.5G} | ${24500000000}
61 # XL710-DA2 Mpps limit 37.5Mpps/2=18.75Mpps
62 | ${s_18.75Mpps} | ${18750000}
63 # Socket names
64 | ${bd_id1}= | 1
65 | ${bd_id2}= | 2
66 | ${sock1}= | /tmp/sock-1-${bd_id1}
67 | ${sock2}= | /tmp/sock-1-${bd_id2}
68 # Traffic profile:
69 | ${traffic_profile} | trex-sl-3n-ethip4-ip4src254
70
71 *** Test Cases ***
72 | tc01-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
73 | | [Documentation]
74 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
75 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 64 Byte frames\
76 | | ... | using binary search start at 40GE linerate, step 10kpps.
77 | | ...
78 | | [Tags] | 64B | 1T1C | STHREAD | NDRDISC
79 | | ...
80 | | ${framesize}= | Set Variable | ${64}
81 | | ${min_rate}= | Set Variable | ${10000}
82 | | ${max_rate}= | Set Variable | ${s_18.75Mpps}
83 | | ${binary_min}= | Set Variable | ${min_rate}
84 | | ${binary_max}= | Set Variable | ${max_rate}
85 | | ${threshold}= | Set Variable | ${min_rate}
86 | | ${dut1_vm_refs}= | Create Dictionary
87 | | ${dut2_vm_refs}= | Create Dictionary
88 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
89 | | And Add PCI devices to DUTs in 3-node single link topology
90 | | And Add no multi seg to all DUTs
91 | | And Apply startup configuration on all VPP DUTs
92 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
93 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
94 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
95 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
96 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
97 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
98 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
99 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
100 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
101 | | ... | ${True}
102 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
103 | | ... | ${binary_max} | ${traffic_profile}
104 | | ... | ${min_rate} | ${max_rate} | ${threshold}
105
106 | tc02-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
107 | | [Documentation]
108 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
109 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 64 Byte frames\
110 | | ... | using binary search start at 40GE linerate, step 10kpps, LT=0.5%.
111 | | ...
112 | | [Tags] | 64B | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
113 | | ...
114 | | ${framesize}= | Set Variable | ${64}
115 | | ${min_rate}= | Set Variable | ${10000}
116 | | ${max_rate}= | Set Variable | ${s_18.75Mpps}
117 | | ${binary_min}= | Set Variable | ${min_rate}
118 | | ${binary_max}= | Set Variable | ${max_rate}
119 | | ${threshold}= | Set Variable | ${min_rate}
120 | | ${dut1_vm_refs}= | Create Dictionary
121 | | ${dut2_vm_refs}= | Create Dictionary
122 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
123 | | And Add PCI devices to DUTs in 3-node single link topology
124 | | And Add no multi seg to all DUTs
125 | | And Apply startup configuration on all VPP DUTs
126 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
127 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
128 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
129 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
130 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
131 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
132 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
133 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
134 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
135 | | ... | ${True}
136 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
137 | | ... | ${binary_max} | ${traffic_profile}
138 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
139 | | ... | ${perf_pdr_loss_acceptance_type}
140
141 | tc03-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
142 | | [Documentation]
143 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
144 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte frames\
145 | | ... | using binary search start at 40GE linerate, step 10kpps.
146 | | ...
147 | | [Tags] | 1518B | 1T1C | STHREAD | NDRDISC
148 | | ...
149 | | ${framesize}= | Set Variable | ${1518}
150 | | ${min_rate}= | Set Variable | ${10000}
151 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${framesize}
152 | | ${binary_min}= | Set Variable | ${min_rate}
153 | | ${binary_max}= | Set Variable | ${max_rate}
154 | | ${threshold}= | Set Variable | ${min_rate}
155 | | ${dut1_vm_refs}= | Create Dictionary
156 | | ${dut2_vm_refs}= | Create Dictionary
157 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
158 | | And Add PCI devices to DUTs in 3-node single link topology
159 | | And Add no multi seg to all DUTs
160 | | And Apply startup configuration on all VPP DUTs
161 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
162 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
163 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
164 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
165 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
166 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
167 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
168 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
169 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
170 | | ... | ${True}
171 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
172 | | ... | ${binary_max} | ${traffic_profile}
173 | | ... | ${min_rate} | ${max_rate} | ${threshold}
174
175 | tc04-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
176 | | [Documentation]
177 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
178 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte frames\
179 | | ... | using binary search start at 40GE linerate, step 10kpps, LT=0.5%.
180 | | ...
181 | | [Tags] | 1518B | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
182 | | ...
183 | | ${framesize}= | Set Variable | ${1518}
184 | | ${min_rate}= | Set Variable | ${10000}
185 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${framesize}
186 | | ${binary_min}= | Set Variable | ${min_rate}
187 | | ${binary_max}= | Set Variable | ${max_rate}
188 | | ${threshold}= | Set Variable | ${min_rate}
189 | | ${dut1_vm_refs}= | Create Dictionary
190 | | ${dut2_vm_refs}= | Create Dictionary
191 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
192 | | And Add PCI devices to DUTs in 3-node single link topology
193 | | And Add no multi seg to all DUTs
194 | | And Apply startup configuration on all VPP DUTs
195 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
196 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
197 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
198 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
199 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
200 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
201 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
202 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
203 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
204 | | ... | ${True}
205 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
206 | | ... | ${binary_max} | ${traffic_profile}
207 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
208 | | ... | ${perf_pdr_loss_acceptance_type}
209
210 | tc05-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
211 | | [Documentation]
212 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
213 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for IMIX_v4_1 frame\
214 | | ... | size using binary search start at 40GE linerate, step 5kpps.
215 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
216 | | ...
217 | | [Tags] | IMIX | 1T1C | STHREAD | NDRDISC
218 | | ...
219 | | ${framesize}= | Set Variable | IMIX_v4_1
220 | | ${min_rate}= | Set Variable | ${10000}
221 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${353.83333}
222 | | ${binary_min}= | Set Variable | ${min_rate}
223 | | ${binary_max}= | Set Variable | ${max_rate}
224 | | ${threshold}= | Set Variable | ${min_rate}
225 | | ${dut1_vm_refs}= | Create Dictionary
226 | | ${dut2_vm_refs}= | Create Dictionary
227 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
228 | | And Add PCI devices to DUTs in 3-node single link topology
229 | | And Add no multi seg to all DUTs
230 | | And Apply startup configuration on all VPP DUTs
231 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
232 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
233 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
234 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
235 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
236 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
237 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
238 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
239 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
240 | | ... | ${True}
241 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
242 | | ... | ${binary_max} | ${traffic_profile}
243 | | ... | ${min_rate} | ${max_rate} | ${threshold}
244
245 | tc06-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
246 | | [Documentation]
247 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
248 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for IMIX_v4_1 frame\
249 | | ... | size using binary search start at 40GE linerate, step 5kpps, LT=0.5%.
250 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
251 | | ...
252 | | [Tags] | IMIX | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
253 | | ...
254 | | ${framesize}= | Set Variable | IMIX_v4_1
255 | | ${min_rate}= | Set Variable | ${10000}
256 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${353.83333}
257 | | ${binary_min}= | Set Variable | ${min_rate}
258 | | ${binary_max}= | Set Variable | ${max_rate}
259 | | ${threshold}= | Set Variable | ${min_rate}
260 | | ${dut1_vm_refs}= | Create Dictionary
261 | | ${dut2_vm_refs}= | Create Dictionary
262 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
263 | | And Add PCI devices to DUTs in 3-node single link topology
264 | | And Apply startup configuration on all VPP DUTs
265 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
266 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
267 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
268 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
269 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
270 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
271 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
272 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
273 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
274 | | ... | ${True}
275 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
276 | | ... | ${binary_max} | ${traffic_profile}
277 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
278 | | ... | ${perf_pdr_loss_acceptance_type}
279
280 | tc07-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
281 | | [Documentation]
282 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
283 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 64 Byte frames\
284 | | ... | using binary search start at 40GE linerate, step 10kpps.
285 | | ...
286 | | [Tags] | 64B | 2T2C | MTHREAD | NDRDISC
287 | | ...
288 | | ${framesize}= | Set Variable | ${64}
289 | | ${min_rate}= | Set Variable | ${10000}
290 | | ${max_rate}= | Set Variable | ${s_18.75Mpps}
291 | | ${binary_min}= | Set Variable | ${min_rate}
292 | | ${binary_max}= | Set Variable | ${max_rate}
293 | | ${threshold}= | Set Variable | ${min_rate}
294 | | ${dut1_vm_refs}= | Create Dictionary
295 | | ${dut2_vm_refs}= | Create Dictionary
296 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
297 | | And Add PCI devices to DUTs in 3-node single link topology
298 | | And Add no multi seg to all DUTs
299 | | And Apply startup configuration on all VPP DUTs
300 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
301 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
302 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
303 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
304 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
305 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
306 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
307 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
308 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
309 | | ... | ${True}
310 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
311 | | ... | ${binary_max} | ${traffic_profile}
312 | | ... | ${min_rate} | ${max_rate} | ${threshold}
313
314 | tc08-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
315 | | [Documentation]
316 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
317 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 64 Byte frames\
318 | | ... | using binary search start at 40GE linerate, step 10kpps, LT=0.5%.
319 | | ...
320 | | [Tags] | 64B | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
321 | | ...
322 | | ${framesize}= | Set Variable | ${64}
323 | | ${min_rate}= | Set Variable | ${10000}
324 | | ${max_rate}= | Set Variable | ${s_18.75Mpps}
325 | | ${binary_min}= | Set Variable | ${min_rate}
326 | | ${binary_max}= | Set Variable | ${max_rate}
327 | | ${threshold}= | Set Variable | ${min_rate}
328 | | ${dut1_vm_refs}= | Create Dictionary
329 | | ${dut2_vm_refs}= | Create Dictionary
330 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
331 | | And Add PCI devices to DUTs in 3-node single link topology
332 | | And Add no multi seg to all DUTs
333 | | And Apply startup configuration on all VPP DUTs
334 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
335 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
336 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
337 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
338 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
339 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
340 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
341 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
342 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
343 | | ... | ${True}
344 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
345 | | ... | ${binary_max} | ${traffic_profile}
346 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
347 | | ... | ${perf_pdr_loss_acceptance_type}
348
349 | tc09-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
350 | | [Documentation]
351 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
352 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for 1518 Byte frames\
353 | | ... | using binary search start at 40GE linerate, step 10kpps.
354 | | ...
355 | | [Tags] | 1518B | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
356 | | ...
357 | | ${framesize}= | Set Variable | ${1518}
358 | | ${min_rate}= | Set Variable | ${10000}
359 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${framesize}
360 | | ${binary_min}= | Set Variable | ${min_rate}
361 | | ${binary_max}= | Set Variable | ${max_rate}
362 | | ${threshold}= | Set Variable | ${min_rate}
363 | | ${dut1_vm_refs}= | Create Dictionary
364 | | ${dut2_vm_refs}= | Create Dictionary
365 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
366 | | And Add PCI devices to DUTs in 3-node single link topology
367 | | And Add no multi seg to all DUTs
368 | | And Apply startup configuration on all VPP DUTs
369 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
370 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
371 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
372 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
373 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
374 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
375 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
376 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
377 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
378 | | ... | ${True}
379 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
380 | | ... | ${binary_max} | ${traffic_profile}
381 | | ... | ${min_rate} | ${max_rate} | ${threshold}
382
383 | tc10-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
384 | | [Documentation]
385 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
386 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for 1518 Byte frames\
387 | | ... | using binary search start at 40GE linerate, step 10kpps, LT=0.5%.
388 | | ...
389 | | [Tags] | 1518B | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
390 | | ...
391 | | ${framesize}= | Set Variable | ${1518}
392 | | ${min_rate}= | Set Variable | ${10000}
393 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${framesize}
394 | | ${binary_min}= | Set Variable | ${min_rate}
395 | | ${binary_max}= | Set Variable | ${max_rate}
396 | | ${threshold}= | Set Variable | ${min_rate}
397 | | ${dut1_vm_refs}= | Create Dictionary
398 | | ${dut2_vm_refs}= | Create Dictionary
399 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
400 | | And Add PCI devices to DUTs in 3-node single link topology
401 | | And Add no multi seg to all DUTs
402 | | And Apply startup configuration on all VPP DUTs
403 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
404 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
405 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
406 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
407 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
408 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
409 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
410 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
411 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
412 | | ... | ${True}
413 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
414 | | ... | ${binary_max} | ${traffic_profile}
415 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
416 | | ... | ${perf_pdr_loss_acceptance_type}
417
418 | tc11-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
419 | | [Documentation]
420 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
421 | | ... | 1 receive queue per NIC port. [Ver] Find NDR for IMIX_v4_1 frame\
422 | | ... | size using binary search start at 40GE linerate, step 5kpps.
423 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
424 | | ...
425 | | [Tags] | IMIX | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
426 | | ...
427 | | ${framesize}= | Set Variable | IMIX_v4_1
428 | | ${min_rate}= | Set Variable | ${10000}
429 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${353.83333}
430 | | ${binary_min}= | Set Variable | ${min_rate}
431 | | ${binary_max}= | Set Variable | ${max_rate}
432 | | ${threshold}= | Set Variable | ${min_rate}
433 | | ${dut1_vm_refs}= | Create Dictionary
434 | | ${dut2_vm_refs}= | Create Dictionary
435 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
436 | | And Add PCI devices to DUTs in 3-node single link topology
437 | | And Add no multi seg to all DUTs
438 | | And Apply startup configuration on all VPP DUTs
439 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
440 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
441 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
442 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
443 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
444 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
445 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
446 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
447 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
448 | | ... | ${True}
449 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
450 | | ... | ${binary_max} | ${traffic_profile}
451 | | ... | ${min_rate} | ${max_rate} | ${threshold}
452
453 | tc12-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
454 | | [Documentation]
455 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
456 | | ... | 1 receive queue per NIC port. [Ver] Find PDR for IMIX_v4_1 frame\
457 | | ... | size using binary search start at 40GE linerate, step 5kpps, LT=0.5%.
458 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
459 | | ...
460 | | [Tags] | IMIX | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
461 | | ...
462 | | ${framesize}= | Set Variable | IMIX_v4_1
463 | | ${min_rate}= | Set Variable | ${10000}
464 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${353.83333}
465 | | ${binary_min}= | Set Variable | ${min_rate}
466 | | ${binary_max}= | Set Variable | ${max_rate}
467 | | ${threshold}= | Set Variable | ${min_rate}
468 | | ${dut1_vm_refs}= | Create Dictionary
469 | | ${dut2_vm_refs}= | Create Dictionary
470 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
471 | | And Add PCI devices to DUTs in 3-node single link topology
472 | | And Add no multi seg to all DUTs
473 | | And Apply startup configuration on all VPP DUTs
474 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
475 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
476 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
477 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
478 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
479 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
480 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
481 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
482 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
483 | | ... | ${True}
484 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
485 | | ... | ${binary_max} | ${traffic_profile}
486 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
487 | | ... | ${perf_pdr_loss_acceptance_type}
488
489 | tc13-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
490 | | [Documentation]
491 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
492 | | ... | 2 receive queues per NIC port. [Ver] Find NDR for 64 Byte frames\
493 | | ... | using binary search start at 40GE linerate, step 10kpps.
494 | | ...
495 | | [Tags] | 64B | 4T4C | MTHREAD | NDRDISC
496 | | ...
497 | | ${framesize}= | Set Variable | ${64}
498 | | ${min_rate}= | Set Variable | ${10000}
499 | | ${max_rate}= | Set Variable | ${s_18.75Mpps}
500 | | ${binary_min}= | Set Variable | ${min_rate}
501 | | ${binary_max}= | Set Variable | ${max_rate}
502 | | ${threshold}= | Set Variable | ${min_rate}
503 | | ${dut1_vm_refs}= | Create Dictionary
504 | | ${dut2_vm_refs}= | Create Dictionary
505 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
506 | | And Add PCI devices to DUTs in 3-node single link topology
507 | | And Add no multi seg to all DUTs
508 | | And Apply startup configuration on all VPP DUTs
509 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
510 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
511 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
512 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
513 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
514 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
515 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
516 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
517 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
518 | | ... | ${True}
519 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
520 | | ... | ${binary_max} | ${traffic_profile}
521 | | ... | ${min_rate} | ${max_rate} | ${threshold}
522
523 | tc14-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
524 | | [Documentation]
525 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
526 | | ... | 2 receive queues per NIC port. [Ver] Find PDR for 64 Byte frames\
527 | | ... | using binary search start at 40GE linerate, step 10kpps, LT=0.5%.
528 | | ...
529 | | [Tags] | 64B | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
530 | | ...
531 | | ${framesize}= | Set Variable | ${64}
532 | | ${min_rate}= | Set Variable | ${10000}
533 | | ${max_rate}= | Set Variable | ${s_18.75Mpps}
534 | | ${binary_min}= | Set Variable | ${min_rate}
535 | | ${binary_max}= | Set Variable | ${max_rate}
536 | | ${threshold}= | Set Variable | ${min_rate}
537 | | ${dut1_vm_refs}= | Create Dictionary
538 | | ${dut2_vm_refs}= | Create Dictionary
539 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
540 | | And Add PCI devices to DUTs in 3-node single link topology
541 | | And Add no multi seg to all DUTs
542 | | And Apply startup configuration on all VPP DUTs
543 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
544 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
545 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
546 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
547 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
548 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
549 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
550 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
551 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
552 | | ... | ${True}
553 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
554 | | ... | ${binary_max} | ${traffic_profile}
555 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
556 | | ... | ${perf_pdr_loss_acceptance_type}
557
558 | tc15-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
559 | | [Documentation]
560 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
561 | | ... | 2 receive queues per NIC port. [Ver] Find NDR for 1518 Byte frames\
562 | | ... | using binary search start at 40GE linerate, step 10kpps.
563 | | ...
564 | | [Tags] | 1518B | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
565 | | ...
566 | | ${framesize}= | Set Variable | ${1518}
567 | | ${min_rate}= | Set Variable | ${10000}
568 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${framesize}
569 | | ${binary_min}= | Set Variable | ${min_rate}
570 | | ${binary_max}= | Set Variable | ${max_rate}
571 | | ${threshold}= | Set Variable | ${min_rate}
572 | | ${dut1_vm_refs}= | Create Dictionary
573 | | ${dut2_vm_refs}= | Create Dictionary
574 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
575 | | And Add PCI devices to DUTs in 3-node single link topology
576 | | And Add no multi seg to all DUTs
577 | | And Apply startup configuration on all VPP DUTs
578 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
579 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
580 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
581 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
582 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
583 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
584 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
585 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
586 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
587 | | ... | ${True}
588 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
589 | | ... | ${binary_max} | ${traffic_profile}
590 | | ... | ${min_rate} | ${max_rate} | ${threshold}
591
592 | tc16-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
593 | | [Documentation]
594 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
595 | | ... | 2 receive queues per NIC port. [Ver] Find PDR for 1518 Byte frames\
596 | | ... | using binary search start at 40GE linerate, step 10kpps, LT=0.5%.
597 | | ...
598 | | [Tags] | 1518B | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
599 | | ...
600 | | ${framesize}= | Set Variable | ${1518}
601 | | ${min_rate}= | Set Variable | ${10000}
602 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${framesize}
603 | | ${binary_min}= | Set Variable | ${min_rate}
604 | | ${binary_max}= | Set Variable | ${max_rate}
605 | | ${threshold}= | Set Variable | ${min_rate}
606 | | ${dut1_vm_refs}= | Create Dictionary
607 | | ${dut2_vm_refs}= | Create Dictionary
608 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
609 | | And Add PCI devices to DUTs in 3-node single link topology
610 | | And Add no multi seg to all DUTs
611 | | And Apply startup configuration on all VPP DUTs
612 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
613 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
614 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
615 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
616 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
617 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
618 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
619 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
620 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
621 | | ... | ${True}
622 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
623 | | ... | ${binary_max} | ${traffic_profile}
624 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
625 | | ... | ${perf_pdr_loss_acceptance_type}
626
627 | tc17-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc
628 | | [Documentation]
629 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
630 | | ... | 2 receive queues per NIC port. [Ver] Find NDR for IMIX_v4_1 frame\
631 | | ... | size using binary search start at 40GE linerate, step 5kpps.
632 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
633 | | ...
634 | | [Tags] | IMIX | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
635 | | ...
636 | | ${framesize}= | Set Variable | IMIX_v4_1
637 | | ${min_rate}= | Set Variable | ${10000}
638 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${353.83333}
639 | | ${binary_min}= | Set Variable | ${min_rate}
640 | | ${binary_max}= | Set Variable | ${max_rate}
641 | | ${threshold}= | Set Variable | ${min_rate}
642 | | ${dut1_vm_refs}= | Create Dictionary
643 | | ${dut2_vm_refs}= | Create Dictionary
644 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
645 | | And Add PCI devices to DUTs in 3-node single link topology
646 | | And Add no multi seg to all DUTs
647 | | And Apply startup configuration on all VPP DUTs
648 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
649 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
650 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
651 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
652 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
653 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
654 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
655 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
656 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
657 | | ... | ${True}
658 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
659 | | ... | ${binary_max} | ${traffic_profile}
660 | | ... | ${min_rate} | ${max_rate} | ${threshold}
661
662 | tc18-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc
663 | | [Documentation]
664 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
665 | | ... | 2 receive queues per NIC port. [Ver] Find PDR for IMIX_v4_1 frame\
666 | | ... | size using binary search start at 40GE linerate, step 5kpps, LT=0.5%.
667 | | ... | IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)
668 | | ...
669 | | [Tags] | IMIX | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
670 | | ...
671 | | ${framesize}= | Set Variable | IMIX_v4_1
672 | | ${min_rate}= | Set Variable | ${10000}
673 | | ${max_rate}= | Calculate pps | ${s_24.5G} | ${353.83333}
674 | | ${binary_min}= | Set Variable | ${min_rate}
675 | | ${binary_max}= | Set Variable | ${max_rate}
676 | | ${threshold}= | Set Variable | ${min_rate}
677 | | ${dut1_vm_refs}= | Create Dictionary
678 | | ${dut2_vm_refs}= | Create Dictionary
679 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
680 | | And Add PCI devices to DUTs in 3-node single link topology
681 | | And Add no multi seg to all DUTs
682 | | And Apply startup configuration on all VPP DUTs
683 | | When Initialize L2 bridge domains with Vhost-User in 3-node circular topology
684 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
685 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
686 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
687 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
688 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
689 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
690 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
691 | | Run Keyword Unless | ${qemu_built} | Set Suite Variable | ${qemu_built}
692 | | ... | ${True}
693 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
694 | | ... | ${binary_max} | ${traffic_profile}
695 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
696 | | ... | ${perf_pdr_loss_acceptance_type}