X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=resources%2Flibraries%2Fpython%2FHoststackUtil.py;fp=resources%2Flibraries%2Fpython%2FHoststackUtil.py;h=2f093ce8436e3c9ecc74ba6cd55f0e84ec39f1ab;hb=f2de7c48d20c2944a5b31a907ecef566e05aeaeb;hp=e797c3c206540e5f45fbe1ab50cddcb9d7aae34b;hpb=9377c956a86e42727039d9dab8879c10c9399f4c;p=csit.git 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