Skip to content

Commit 3d8ac13

Browse files
committed
Add option to make vxlan test into pvp test
1 parent 62f7b90 commit 3d8ac13

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

ovs_performance.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3699,6 +3699,8 @@ def main():
36993699
action="store_true")
37003700
parser.add_argument("--run-vxlan-test",
37013701
help="Run the VXLAN tunnel test", action="store_true")
3702+
parser.add_argument("--vxlan-test-is-pvp",
3703+
help="Run the VXLAN tunnel test as a PVP test", action="store_true")
37023704
parser.add_argument("--skip-pv-test",
37033705
help="Do not run the P to V test", action="store_true")
37043706
parser.add_argument("--skip-pvp-test",
@@ -4325,7 +4327,8 @@ def main():
43254327
for nr_of_streams in stream_size_list:
43264328
vxlan_results[nr_of_streams], \
43274329
vxlan_cpu_results[nr_of_streams] = test_vxlan(nr_of_streams,
4328-
packet_size_list)
4330+
packet_size_list,
4331+
config.vxlan_test_is_pvp)
43294332

43304333
create_multiple_graph(packet_size_list, vxlan_results,
43314334
"Packet size", "Packets/second",

0 commit comments

Comments
 (0)