From: Florin Coras Date: Thu, 6 May 2021 07:08:18 +0000 (-0700) Subject: vcl: reduce iperf tests output X-Git-Tag: v21.10-rc0~115 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=1d87914a6121db40bfbc5db979dba20793a03dd0;p=vpp.git vcl: reduce iperf tests output Type: improvement Signed-off-by: Florin Coras Change-Id: Ia6197e99ebc42367624da27387216dc4cdb3141b --- diff --git a/src/vcl/test/test_vcl.py b/src/vcl/test/test_vcl.py index 8950470e8fc..64ca002946b 100644 --- a/src/vcl/test/test_vcl.py +++ b/src/vcl/test/test_vcl.py @@ -262,8 +262,8 @@ class LDPCutThruTestCase(VCLTestCase): self.client_echo_test_args = ["-E", self.echo_phrase, "-X", self.server_addr, self.server_port] self.client_iperf3_timeout = 20 - self.client_iperf3_args = ["-4d", "-t 2", "-c", self.server_addr] - self.server_iperf3_args = ["-4d", "-s"] + self.client_iperf3_args = ["-4", "-t 2", "-c", self.server_addr] + self.server_iperf3_args = ["-4", "-s"] self.client_uni_dir_nsock_timeout = 20 self.client_uni_dir_nsock_test_args = ["-N", "1000", "-U", "-X", "-I", "2", @@ -629,8 +629,8 @@ class LDPThruHostStackIperf(VCLTestCase): self.thru_host_stack_setup() self.client_iperf3_timeout = 20 - self.client_iperf3_args = ["-4d", "-t 2", "-c", self.loop0.local_ip4] - self.server_iperf3_args = ["-4d", "-s"] + self.client_iperf3_args = ["-4", "-t 2", "-c", self.loop0.local_ip4] + self.server_iperf3_args = ["-4", "-s"] def tearDown(self): self.thru_host_stack_tear_down() @@ -665,9 +665,9 @@ class LDPThruHostStackIperfUdp(VCLTestCase): self.thru_host_stack_setup() self.client_iperf3_timeout = 20 - self.client_iperf3_args = ["-4d", "-t 2", "-u", "-l 1400", + self.client_iperf3_args = ["-4", "-t 2", "-u", "-l 1400", "-c", self.loop0.local_ip4] - self.server_iperf3_args = ["-4d", "-s"] + self.server_iperf3_args = ["-4", "-s"] def tearDown(self): self.thru_host_stack_tear_down() @@ -711,9 +711,9 @@ class LDPIpv6CutThruTestCase(VCLTestCase): self.client_ipv6_echo_test_args = ["-6", "-E", self.echo_phrase, "-X", self.server_ipv6_addr, self.server_port] - self.client_ipv6_iperf3_args = ["-6d", "-t 2", "-c", + self.client_ipv6_iperf3_args = ["-6", "-t 2", "-c", self.server_ipv6_addr] - self.server_ipv6_iperf3_args = ["-6d", "-s"] + self.server_ipv6_iperf3_args = ["-6", "-s"] self.client_ipv6_uni_dir_nsock_test_args = ["-N", "1000", "-U", "-X", "-6", "-I", "2",