aboutsummaryrefslogtreecommitdiffstats
path: root/resources/libraries/python/HoststackUtil.py
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2021-04-15 00:58:12 +0000
committerDave Wallace <dwallacelf@gmail.com>2021-05-20 10:41:37 -0400
commitf2de7c48d20c2944a5b31a907ecef566e05aeaeb (patch)
tree610a48b4aa771abd429d246b3b06f943e984d70d /resources/libraries/python/HoststackUtil.py
parent9377c956a86e42727039d9dab8879c10c9399f4c (diff)
hoststack perf: iperf3 udp hoststack performance tests.
Change-Id: Ie2e735971934d8aeac2d436505c120f09ce67ac7 Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'resources/libraries/python/HoststackUtil.py')
-rw-r--r--resources/libraries/python/HoststackUtil.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/resources/libraries/python/HoststackUtil.py b/resources/libraries/python/HoststackUtil.py
index e797c3c206..2f093ce843 100644
--- a/resources/libraries/python/HoststackUtil.py
+++ b/resources/libraries/python/HoststackUtil.py
@@ -100,6 +100,11 @@ class HoststackUtil():
if u"time" in iperf3_attributes:
iperf3_cmd[u"args"] += \
f" --time {iperf3_attributes[u'time']}"
+ if iperf3_attributes[u"udp"]:
+ iperf3_cmd[u"args"] += u" --udp"
+ iperf3_cmd[u"args"] += f" --bandwidth {iperf3_attributes[u'bandwidth']}"
+ if iperf3_attributes[u"length"] > 0:
+ iperf3_cmd[u"args"] += f" --length {iperf3_attributes[u'length']}"
return iperf3_cmd
@staticmethod