From 193013a82048fe62319208e26fbaa4fb101a431c Mon Sep 17 00:00:00 2001 From: Hanoh Haim Date: Sun, 22 Jan 2017 17:53:39 +0200 Subject: fix VMXNET3 regreesion issue Signed-off-by: Hanoh Haim --- scripts/automation/regression/stateful_tests/trex_imix_test.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'scripts/automation/regression/stateful_tests/trex_imix_test.py') diff --git a/scripts/automation/regression/stateful_tests/trex_imix_test.py b/scripts/automation/regression/stateful_tests/trex_imix_test.py index 5f52fab7..dc7eea0b 100755 --- a/scripts/automation/regression/stateful_tests/trex_imix_test.py +++ b/scripts/automation/regression/stateful_tests/trex_imix_test.py @@ -121,6 +121,11 @@ class CTRexIMIX_Test(CTRexGeneral_Test): mult = self.get_benchmark_param('multiplier') core = self.get_benchmark_param('cores') + + # in case of VMXNET3 the number of bytes reported is 60 bytes for 64B + if self.is_VM: + self.trex.result_obj.set_warmup (0.89) + # trex_res = self.trex.run(multiplier = mult, cores = core, duration = 30, l = 1000, p = True) ret = self.trex.start_trex( c = core, @@ -141,6 +146,10 @@ class CTRexIMIX_Test(CTRexGeneral_Test): self.check_general_scenario_results(trex_res) self.check_CPU_benchmark(trex_res) + if self.is_VM: + self.trex.result_obj.set_warmup_default() + + # the name intentionally not matches nose default pattern, including the test should be specified explicitly def dummy(self): ret = self.trex.start_trex( -- cgit From 030c124495335da372a5bb4f537365cce3def3af Mon Sep 17 00:00:00 2001 From: Hanoh Haim Date: Mon, 23 Jan 2017 14:57:29 +0200 Subject: fix trex-333 Signed-off-by: Hanoh Haim --- scripts/automation/regression/stateful_tests/trex_imix_test.py | 7 ------- 1 file changed, 7 deletions(-) (limited to 'scripts/automation/regression/stateful_tests/trex_imix_test.py') diff --git a/scripts/automation/regression/stateful_tests/trex_imix_test.py b/scripts/automation/regression/stateful_tests/trex_imix_test.py index dc7eea0b..4cb01db3 100755 --- a/scripts/automation/regression/stateful_tests/trex_imix_test.py +++ b/scripts/automation/regression/stateful_tests/trex_imix_test.py @@ -121,11 +121,6 @@ class CTRexIMIX_Test(CTRexGeneral_Test): mult = self.get_benchmark_param('multiplier') core = self.get_benchmark_param('cores') - - # in case of VMXNET3 the number of bytes reported is 60 bytes for 64B - if self.is_VM: - self.trex.result_obj.set_warmup (0.89) - # trex_res = self.trex.run(multiplier = mult, cores = core, duration = 30, l = 1000, p = True) ret = self.trex.start_trex( c = core, @@ -146,8 +141,6 @@ class CTRexIMIX_Test(CTRexGeneral_Test): self.check_general_scenario_results(trex_res) self.check_CPU_benchmark(trex_res) - if self.is_VM: - self.trex.result_obj.set_warmup_default() # the name intentionally not matches nose default pattern, including the test should be specified explicitly -- cgit