aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcl/test
diff options
context:
space:
mode:
authorFlorin Coras <fcoras@cisco.com>2021-02-01 11:59:49 -0800
committerFlorin Coras <florin.coras@gmail.com>2021-02-01 19:57:49 +0000
commitbad1d35d7d4ed37f046d17fe7a0b6f7d8897d3d6 (patch)
treed9daa0e2495917fe3a6f0752fc124ad441edd22b /src/vcl/test
parent33a4649733e5cdfc61af33363552c4bfb11f1cd3 (diff)
vcl: remove verbose output from vcl iperf tests
For high throughput tests the amount of debug output can be considerable. Type: improvement Signed-off-by: Florin Coras <fcoras@cisco.com> Change-Id: Icc9f2092918ebca432502af960da11b154818a02
Diffstat (limited to 'src/vcl/test')
-rw-r--r--src/vcl/test/test_vcl.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/vcl/test/test_vcl.py b/src/vcl/test/test_vcl.py
index afb38482207..f5a5bebdad8 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 = ["-V4d", "-t 2", "-c", self.server_addr]
- self.server_iperf3_args = ["-V4d", "-s"]
+ self.client_iperf3_args = ["-4d", "-t 2", "-c", self.server_addr]
+ self.server_iperf3_args = ["-4d", "-s"]
self.client_uni_dir_nsock_timeout = 20
self.client_uni_dir_nsock_test_args = ["-N", "1000", "-U", "-X",
"-I", "2",
@@ -623,8 +623,8 @@ class LDPThruHostStackIperf(VCLTestCase):
self.thru_host_stack_setup()
self.client_iperf3_timeout = 20
- self.client_iperf3_args = ["-V4d", "-t 2", "-c", self.loop0.local_ip4]
- self.server_iperf3_args = ["-V4d", "-s"]
+ self.client_iperf3_args = ["-4d", "-t 2", "-c", self.loop0.local_ip4]
+ self.server_iperf3_args = ["-4d", "-s"]
def tearDown(self):
self.thru_host_stack_tear_down()
@@ -658,9 +658,9 @@ class LDPThruHostStackIperfUdp(VCLTestCase):
self.thru_host_stack_setup()
self.client_iperf3_timeout = 20
- self.client_iperf3_args = ["-V4d", "-t 2", "-u", "-l 1400",
+ self.client_iperf3_args = ["-4d", "-t 2", "-u", "-l 1400",
"-c", self.loop0.local_ip4]
- self.server_iperf3_args = ["-V4d", "-s"]
+ self.server_iperf3_args = ["-4d", "-s"]
def tearDown(self):
self.thru_host_stack_tear_down()
@@ -699,9 +699,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 = ["-V6d", "-t 2", "-c",
+ self.client_ipv6_iperf3_args = ["-6d", "-t 2", "-c",
self.server_ipv6_addr]
- self.server_ipv6_iperf3_args = ["-V6d", "-s"]
+ self.server_ipv6_iperf3_args = ["-6d", "-s"]
self.client_ipv6_uni_dir_nsock_test_args = ["-N", "1000", "-U", "-X",
"-6",
"-I", "2",