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