diff options
Diffstat (limited to 'scripts/automation/regression')
-rw-r--r-- | scripts/automation/regression/setups/trex07/benchmark.yaml | 1 | ||||
-rw-r--r-- | scripts/automation/regression/stateless_tests/stl_client_test.py | 5 |
2 files changed, 2 insertions, 4 deletions
diff --git a/scripts/automation/regression/setups/trex07/benchmark.yaml b/scripts/automation/regression/setups/trex07/benchmark.yaml index cca312ab..c0ec12b1 100644 --- a/scripts/automation/regression/setups/trex07/benchmark.yaml +++ b/scripts/automation/regression/setups/trex07/benchmark.yaml @@ -230,4 +230,5 @@ test_performance_syn_attack_multi_cpus: test_all_profiles : mult : "5%" + skip : ['udp_rand_len_9k.py', 'udp_inc_len_9k.py'] diff --git a/scripts/automation/regression/stateless_tests/stl_client_test.py b/scripts/automation/regression/stateless_tests/stl_client_test.py index 2b425101..73dac734 100644 --- a/scripts/automation/regression/stateless_tests/stl_client_test.py +++ b/scripts/automation/regression/stateless_tests/stl_client_test.py @@ -295,10 +295,7 @@ class STLClient_Test(CStlGeneral_Test): self.c.resume(ports = [self.tx_port, self.rx_port]) time.sleep(100 / 1000.0) - if CTRexScenario.setup_name == 'trex07': - self.c.stop(ports = [self.tx_port, self.rx_port], rx_delay_ms = 100) - else: - self.c.stop(ports = [self.tx_port, self.rx_port]) + self.c.stop(ports = [self.tx_port, self.rx_port]) stats = self.c.get_stats() |