diff options
author | Hanoh Haim <hhaim@cisco.com> | 2016-11-15 16:34:13 +0200 |
---|---|---|
committer | Hanoh Haim <hhaim@cisco.com> | 2016-11-15 17:42:51 +0200 |
commit | 23261980fe47e72a3c3ec900350177dc57fc844d (patch) | |
tree | 5db7621a62e6ae3ff1ba7b6918b0f97b43587b70 /scripts/automation | |
parent | 39a119070230f6d0b648c657cc1deba10dd20b5b (diff) |
update client test for Connect4-X
Signed-off-by: Hanoh Haim <hhaim@cisco.com>
Diffstat (limited to 'scripts/automation')
-rw-r--r-- | scripts/automation/regression/stateless_tests/stl_client_test.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/scripts/automation/regression/stateless_tests/stl_client_test.py b/scripts/automation/regression/stateless_tests/stl_client_test.py index 36ac0ee1..acf5dc61 100644 --- a/scripts/automation/regression/stateless_tests/stl_client_test.py +++ b/scripts/automation/regression/stateless_tests/stl_client_test.py @@ -240,8 +240,12 @@ class STLClient_Test(CStlGeneral_Test): self.skip('skipping profile tests for virtual / non loopback') return + default_mult = self.get_benchmark_param('mult',default="30%") + try: - + print("\n"); + + for profile in self.profiles: print("now testing profile {0}...\n".format(profile)) @@ -269,7 +273,7 @@ class STLClient_Test(CStlGeneral_Test): self.c.clear_stats() - self.c.start(ports = [self.tx_port, self.rx_port], mult = "30%") + self.c.start(ports = [self.tx_port, self.rx_port], mult = default_mult) time.sleep(100 / 1000.0) if p1.is_pauseable() and p2.is_pauseable(): |