[V1] tests/TestSuite_veb_switch:fix Rx bytes statistics

Message ID 20210909182048.26935-1-leweix.yang@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/TestSuite_veb_switch:fix Rx bytes statistics |

Checks

Context Check Description
ci/Intel-dts-test success Testing OK

Commit Message

Lewei Yang Sept. 9, 2021, 6:20 p.m. UTC
  According to dpdk commit e8326d3, fix Rx bytes statistics.

Signed-off-by: Yang Lewei <leweix.yang@intel.com>
---
 tests/TestSuite_veb_switch.py | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)
  

Comments

Tu, Lijuan Sept. 28, 2021, 12:23 a.m. UTC | #1
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Yang Lewei
> Sent: 2021年9月10日 2:21
> To: dts@dpdk.org
> Cc: Yang, LeweiX <leweix.yang@intel.com>
> Subject: [dts] [PATCH V1] tests/TestSuite_veb_switch:fix Rx bytes statistics
> 
> According to dpdk commit e8326d3, fix Rx bytes statistics.
> 
> Signed-off-by: Yang Lewei <leweix.yang@intel.com>

Applied
  

Patch

diff --git a/tests/TestSuite_veb_switch.py b/tests/TestSuite_veb_switch.py
index cdd2b3c4..915296ff 100644
--- a/tests/TestSuite_veb_switch.py
+++ b/tests/TestSuite_veb_switch.py
@@ -283,18 +283,10 @@  class TestVEBSwitching(TestCase):
 
         self.dut.send_expect("stop", "testpmd>", 2)
         self.session_secondary.send_expect("stop", "testpmd>", 2)
-        out = self.session_secondary.send_expect("show port info 0", "testpmd>")
-        vf1_driver = re.findall("Driver\s*name:\s*(\w+)", out)[0]
 
         vf0_tx_stats = self.veb_get_pmd_stats("first", 0, "tx")
         vf1_rx_stats = self.veb_get_pmd_stats("second", 0, "rx")
-        if self.kdriver == 'ice':
-            vf1_rx_stats[-1] = vf1_rx_stats[-1] + 4
-        if self.kdriver == 'i40e':
-            if vf1_driver == 'net_iavf':
-                vf1_rx_stats[-1] = vf1_rx_stats[-1] + 4
-            else:
-                vf1_rx_stats[-1] = vf1_rx_stats[-1]
+        vf1_rx_stats[-1] = vf1_rx_stats[-1] + 4
         self.verify(vf0_tx_stats[0] != 0, "no packet was sent by VF0")
         self.verify(vf0_tx_stats == vf1_rx_stats, "VF1 failed to receive packets from VF0")